ExpandableMarkerAction constructor

const ExpandableMarkerAction({
  1. Key? key,
  2. required Icon icon,
  3. required List<Widget> expandedActions,
  4. double collapsedWidth = 50,
  5. double collapsedHeight = 50,
  6. double spacing = 8,
  7. Axis direction = Axis.horizontal,
  8. Duration duration = const Duration(milliseconds: 120),
  9. BoxDecoration? decoration,
})

Implementation

const ExpandableMarkerAction({
  super.key,
  required this.icon,
  required this.expandedActions,
  this.collapsedWidth = 50,
  this.collapsedHeight = 50,
  this.spacing = 8,
  this.direction = Axis.horizontal,
  this.duration = const Duration(milliseconds: 120),
  this.decoration,
});