toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final otherRestrictions = this.otherRestrictions;
  final routeRestrictions = this.routeRestrictions;
  final routeRestrictionsDetails = this.routeRestrictionsDetails;
  final timeRestrictions = this.timeRestrictions;
  return {
    'otherRestrictions': ?otherRestrictions,
    'routeRestrictions': ?routeRestrictions,
    'routeRestrictionsDetails': ?routeRestrictionsDetails,
    'timeRestrictions': ?timeRestrictions,
  };
}