ButtonsStyle constructor

const ButtonsStyle({
  1. @required String? text,
  2. Color? backgroundColor,
  3. Color? textColor,
  4. double radius = 5,
  5. bool visible = true,
})

Implementation

const ButtonsStyle({
  @required this.text,
  this.backgroundColor,
  this.textColor,
  this.radius = 5,
  this.visible = true,
}) : assert(text != null);