MapControlConfig constructor

const MapControlConfig({
  1. AlignmentGeometry alignment = Alignment.topRight,
  2. EdgeInsets padding = const EdgeInsets.all(16),
  3. Widget? icon,
  4. Color backgroundColor = Colors.white,
  5. Color iconColor = Colors.black87,
})

Implementation

const MapControlConfig({
  this.alignment = Alignment.topRight,
  this.padding = const EdgeInsets.all(16),
  this.icon,
  this.backgroundColor = Colors.white,
  this.iconColor = Colors.black87,
});