toJson static method
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
};
}