BwButtonView constructor

const BwButtonView({
  1. Key? key,
  2. required String? text,
  3. Color? fillColor,
  4. Color? textColor,
  5. dynamic onTap()?,
  6. double? fontSize,
})

Implementation

const BwButtonView(
  {
    super.key,
    required this.text,
    this.fillColor,
    this.textColor,
    this.onTap,
    this.fontSize,
  });