ExpandableFab constructor

const ExpandableFab({
  1. Key? key,
  2. bool? initialOpen,
  3. required List<Widget> children,
  4. required IconData icon,
  5. Color? color,
  6. Color? iconColor,
  7. dynamic controller,
})

Implementation

const ExpandableFab({
  Key? key,
  this.initialOpen,
  required this.children,
  required this.icon,
  this.color,
  this.iconColor,
  this.controller
}) : super(key: key);