normal static method
EcpCommonBtn
normal({
- required String label,
- required dynamic onClick(),
- TextStyle? style,
- EdgeInsets? padding,
- Size? size,
- double? width,
- double? height,
- EdgeInsets? margin,
- Color? borderColor,
- Color? textColor,
Implementation
static EcpCommonBtn normal({
required String label,
required Function() onClick,
TextStyle? style,
EdgeInsets? padding,
Size? size,
double? width,
double? height,
EdgeInsets? margin,
Color? borderColor,
Color? textColor,
}) {
return EcpCommonBtn(
label: label,
onClick: onClick,
style: style,
padding: padding,
width: width,
height: height,
margin: margin,
);
}