name property

String get name

traffic driving traffic

Implementation

// traffic;

// override name getter
String get name {
  switch (this) {
    case OsrmRequestProfile.car:
      return 'driving';
    case OsrmRequestProfile.bike:
      return 'bike';
    case OsrmRequestProfile.foot:
      return 'foot';
    default:
      throw Exception('Invalid profile: $this');
  }
}