EasyButton constructor

EasyButton({
  1. Key? key,
  2. Widget? icon,
  3. SvgPicture? svgPicture,
  4. String? title,
  5. Color? color,
  6. double? width,
  7. double? height,
  8. double? radius,
  9. Function? onTap,
  10. double? fontSize,
})

Implementation

EasyButton(
    {Key? key,
    this.icon,
    this.svgPicture,
    this.title,
    this.color,
    this.width,
    this.height,
    this.radius,
    this.onTap,
    this.fontSize})
    : super(key: key);