toJson method

Map<String, dynamic> toJson()

Map representation of this VroomVehicleBreak having keys 'id', 'time_windows', 'service', and 'description'.

Implementation

Map<String, dynamic> toJson() => {
      'id': id,
      'time_windows': timeWindows,
      'service': service,
      'description': description,
    };