FcButton constructor

const FcButton({
  1. Key? key,
  2. bool disabled = false,
  3. EdgeInsets? padding,
  4. EdgeInsets? margin,
  5. required VoidCallback onPressed,
  6. required Widget child,
  7. Color? color,
  8. Color? borderColor,
  9. TextStyle? textStyle,
  10. FcButtonSize size = FcButtonSize.normal,
  11. Size? customSize,
  12. bool plain = false,
  13. bool round = false,
  14. double? radius,
  15. bool block = false,
})

Implementation

const FcButton({Key? key,
  this.disabled = false,
  this.padding,
  this.margin,
  required this.onPressed,
  required this.child,
  this.color,
  this.borderColor,
  this.textStyle,
  this.size = FcButtonSize.normal,
  this.customSize,
  this.plain = false,
  this.round = false,
  this.radius,
  this.block = false,
}) : super(key: key);