CustomTextButton constructor

CustomTextButton(
  1. String text,
  2. {required Function onClick,
  3. dynamic iconRight,
  4. dynamic iconLeft,
  5. double? fontSize,
  6. double? width,
  7. Color? fontColor,
  8. FontWeight? fontWeight}
)

Implementation

CustomTextButton(
  this.text, {
  required this.onClick,
  this.iconRight,
  this.iconLeft,
  this.fontSize,
  this.width,
  this.fontColor,
  this.fontWeight,
});