RaptorButton constructor

RaptorButton({
  1. double? height,
  2. double? width,
  3. Icon? icon,
  4. Color? color,
  5. required VoidCallback onSubmit,
  6. required Text buttonText,
})

Implementation

RaptorButton(
    {this.height,
    this.width,
    this.icon,
    this.color,
    required this.onSubmit,
    required this.buttonText});