mapType property

MapType get mapType

Implementation

MapType get mapType {
  switch (this) {
    case MapLocationType.apple:
      return MapType.apple;
    case MapLocationType.google:
      return MapType.google;
    case MapLocationType.waze:
      return MapType.waze;
  }
}