VelocityTextButton constructor
VelocityTextButton({
- required String title,
- VoidCallback? onPressed,
- double fontSize = 16,
- Color color = darkBlue,
- bool enabled = true,
- Brightness brightness = Brightness.dark,
Implementation
VelocityTextButton({
required this.title,
this.onPressed,
this.fontSize = 16,
this.color = darkBlue,
this.enabled = true,
this.brightness = Brightness.dark,
});