name property

String name

Implementation

String get name {
  switch (this) {
    case NavApp.waze:
      return 'Waze';
    case NavApp.gmaps:
      return 'Google Maps';
    case NavApp.appleMaps:
      return 'Apple Maps';
  }
}