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