CreatorButton constructor

CreatorButton({
  1. Key? key,
  2. required InitialPosition initialPosition,
  3. required Key? toDecorateKey,
  4. required Widget toDecorate,
  5. GestureTapCallback? onTap,
  6. GestureTapDownCallback? onTapDown,
  7. required bool ensureHeight,
  8. required Color backgroundColor,
  9. required Widget icon,
  10. required Color borderColor,
  11. required Color textColor,
  12. String? label,
})

Implementation

CreatorButton(
    {super.key,
    required this.initialPosition,
    required this.toDecorateKey,
    required this.toDecorate,
    this.onTap,
    this.onTapDown,
    required this.ensureHeight,
    required this.backgroundColor,
    required this.icon,
    required this.borderColor,
    required this.textColor,
    this.label});