ExpandableFabMenuItem constructor

ExpandableFabMenuItem({
  1. required Widget child,
  2. required String title,
  3. required String subtitle,
  4. required Color backgroundColor,
  5. double? elevation,
  6. required VoidCallback onTap,
  7. Color? titleColor,
  8. Color? subTitleColor,
})

Implementation

ExpandableFabMenuItem(
    {required this.child,
    required this.title,
    required this.subtitle,
    required this.backgroundColor,
    this.elevation,
    required this.onTap,
    this.titleColor,
    this.subTitleColor});