OutlinedButton constructor
OutlinedButton({})
Implementation
OutlinedButton({
Key? key,
required String label,
String? labelColor,
String? borderColor,
double? borderWidth,
dynamic borderRadius,
double? fontSize,
String? fontWeight,
dynamic padding,
SduiNode? icon,
SduiAction? onTap,
}) : super(
'OutlinedButton',
key: key,
label: label,
labelColor: labelColor,
borderColor: borderColor,
borderWidth: borderWidth,
borderRadius: borderRadius,
fontSize: fontSize,
fontWeight: fontWeight,
padding: padding,
icon: icon,
onTap: onTap,
);