ExpandableFab constructor

const ExpandableFab({
  1. Key? key,
  2. bool? initial_open,
  3. required double distance,
  4. required List<Widget> children,
  5. required Color background_color,
})

Implementation

const ExpandableFab({
  Key? key,
  this.initial_open,
  required this.distance,
  required this.children,
  required this.background_color,
}) : super(key: key);