Map_ constructor

Map_({
  1. GeoPoint? home,
  2. String? style,
  3. bool? followGps,
})

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;
}