DialButton constructor

DialButton({
  1. Key? key,
  2. String? title,
  3. String? subtitle,
  4. bool hideSubtitle = false,
  5. Color? color,
  6. Color? textColor,
  7. IconData? icon,
  8. Color? iconColor,
  9. bool? shouldAnimate,
  10. ValueSetter<String?>? onTap,
})

Implementation

DialButton(
    {this.key,
    this.title,
    this.subtitle,
    this.hideSubtitle = false,
    this.color,
    this.textColor,
    this.icon,
    this.iconColor,
    this.shouldAnimate,
    this.onTap});