MapButtonColumn constructor

const MapButtonColumn({
  1. Key? key,
  2. required List<MapButton> buttons,
  3. required Alignment alignment,
  4. EdgeInsets? padding,
  5. bool safeBottom = false,
  6. bool safeRight = false,
})

Implementation

const MapButtonColumn({
  super.key,
  required this.buttons,
  required this.alignment,
  this.padding,
  this.safeBottom = false,
  this.safeRight = false,
});