SpecialButton constructor

const SpecialButton(
  1. {Key? key,
  2. required Alignment beginAlign,
  3. required Alignment endAlign,
  4. required Alignment antiBeginAlign,
  5. required Alignment antiEndAlign,
  6. required Widget label,
  7. required Widget icon,
  8. bool keepState = true,
  9. required Color shadow,
  10. bool shrinkwrap = true,
  11. required Color antiShadow,
  12. required List<Color> antiColors,
  13. required void onPressed(
      ),
    1. required List<Color> colors}
    )

    Implementation

    const SpecialButton(
        {super.key,
        required this.beginAlign,
        required this.endAlign,
        required this.antiBeginAlign,
        required this.antiEndAlign,
        required this.label,
        required this.icon,
        this.keepState = true,
        required this.shadow,
        this.shrinkwrap = true,
        required this.antiShadow,
        required this.antiColors,
        required this.onPressed,
        required this.colors});