toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final endTime = this.endTime;
  final location = this.location;
  final otherLocations = this.otherLocations;
  final recommendationId = this.recommendationId;
  final recommendationType = this.recommendationType;
  final startTime = this.startTime;
  return {
    'endTime': ?endTime,
    'location': ?location,
    'otherLocations': ?otherLocations,
    'recommendationId': ?recommendationId,
    'recommendationType': ?recommendationType,
    'startTime': ?startTime,
  };
}