NavigationMarker constructor
NavigationMarker({})
Implementation
NavigationMarker({
required this.imagePath,
required this.latLng,
this.title,
this.snippet,
this.width,
this.height,
}) : assert(width != null || height == null,
'Width and height must be both provided or both null'),
assert(height != null || width == null,
'Width and height must be both provided or both null');