toJson method

Map<String, dynamic> toJson()

Returns a JSON representation of this object.

Implementation

Map<String, dynamic> toJson() {
  return {
    ApiFields.stopName: stopName,
    ApiFields.predictions:
        predictions.map((prediction) => prediction.toJson()).toList(),
  };
}