VVButtonBlue constructor

const VVButtonBlue({
  1. Key? key,
  2. bool? visibility,
  3. required Function onTap,
  4. required String text,
  5. double? width,
  6. double? fontSize,
  7. double? circular,
  8. double? height,
  9. VVButtonType type = VVButtonType.simple,
  10. bool disable = false,
  11. double? fontHeight,
})

Implementation

const VVButtonBlue({
  Key? key,
  this.visibility,
  required this.onTap,
  required this.text,
  this.width,
  this.fontSize,
  this.circular,
  this.height,
  this.type = VVButtonType.simple,
  this.disable = false,
  this.fontHeight,
}) : super(key: key);