mapType property
MapLocationType?
get
mapType
Implementation
MapLocationType? get mapType {
switch (this) {
case MapType.apple:
return MapLocationType.apple;
case MapType.google:
return MapLocationType.google;
case MapType.waze:
return MapLocationType.waze;
default:
return null;
}
}