ButtonArgs constructor
ButtonArgs({
- double? width,
- double height = 40,
- String text = '',
- Color color = const Color(0xFF999999),
- FontWeight fontWeight = FontWeight.normal,
- String action = '',
- double fontSize = 16,
- Color backgroundColor = Colors.transparent,
- EdgeInsetsGeometry margin = EdgeInsets.zero,
- BorderRadius borderRadius = BorderRadius.zero,
Implementation
ButtonArgs({
this.width,
this.height = 40,
this.text = '',
this.color = const Color(0xFF999999),
this.fontWeight = FontWeight.normal,
this.action = '',
this.fontSize = 16,
this.backgroundColor = Colors.transparent,
this.margin = EdgeInsets.zero,
this.borderRadius = BorderRadius.zero,
});