Map_ constructor
Implementation
factory Map_({
GeoPoint? home,
$core.String? style,
$core.bool? followGps,
}) {
final result = create();
if (home != null) result.home = home;
if (style != null) result.style = style;
if (followGps != null) result.followGps = followGps;
return result;
}