AilButtonElement constructor

AilButtonElement({
  1. required String text,
  2. dynamic onTap()?,
  3. Widget? icon,
  4. Color? backgroundColor,
  5. Color? textColor,
})

Implementation

AilButtonElement(
    {required this.text,
    this.onTap,
    this.icon,
    this.backgroundColor,
    this.textColor});