toJson static method

Map toJson(
  1. Station station
)

Implementation

static Map toJson(Station station) {
  return {
    'cod': station.code,
    'id': station.id,
    'lat': station.lat,
    'lon': station.long,
    'nam': station.name,
    'ref': station.ref,
    'pickupType': station.pickupType,
    'dropoffType': station.dropoffType
  };
}