VelocityTextButton constructor

VelocityTextButton({
  1. required String title,
  2. VoidCallback? onPressed,
  3. double fontSize = 16,
  4. Color color = darkBlue,
  5. bool enabled = true,
  6. Brightness brightness = Brightness.dark,
})

Implementation

VelocityTextButton({
  required this.title,
  this.onPressed,
  this.fontSize = 16,
  this.color = darkBlue,
  this.enabled = true,
  this.brightness = Brightness.dark,
});