FcButton constructor
const
FcButton({
- Key? key,
- bool disabled = false,
- EdgeInsets? padding,
- EdgeInsets? margin,
- required VoidCallback onPressed,
- required Widget child,
- Color? color,
- Color? borderColor,
- TextStyle? textStyle,
- FcButtonSize size = FcButtonSize.normal,
- Size? customSize,
- bool plain = false,
- bool round = false,
- double? radius,
- 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);