AtomicButton constructor

AtomicButton({
  1. String? keyValue,
  2. GestureTapCallback? onTap,
  3. required String text,
  4. double? height,
  5. required ButtonType buttonType,
  6. Alignment alignment = Alignment.center,
  7. Color? textColor,
  8. required ButtonSize buttonSize,
})

Implementation

AtomicButton(
    {this.keyValue,
    this.onTap,
    required this.text,
    this.height,
    required this.buttonType,
    this.alignment = Alignment.center,
    this.textColor,
    required this.buttonSize});