MapMarkerIconModel constructor

MapMarkerIconModel(
  1. dynamic icon, {
  2. String? library,
  3. int? size,
  4. Color? color,
  5. required int iconPadding,
  6. required int padding,
  7. Color? iconBackgroundColor,
  8. Color? backgroundColor,
})

Creates a custom map marker icon model.

Implementation

MapMarkerIconModel(super.icon,
    {super.library,
    super.size,
    super.color,
    required this.iconPadding,
    required this.padding,
    this.iconBackgroundColor,
    this.backgroundColor});