value property

String value

Implementation

String get value {
  switch(this){
    case ActivityType.fitness:
      return "fitness";

    case ActivityType.airborne:
      return "airborne";

    case ActivityType.automotiveNavigation:
      return "automotiveNavigation";

    case ActivityType.other:
      return "other";

    case ActivityType.otherNavigation:
      return "otherNavigation";
  }
}