toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final endDate = this.endDate;
  final restrictionType = this.restrictionType;
  final startDate = this.startDate;
  final url = this.url;
  return {
    'endDate': ?endDate,
    'restrictionType': ?restrictionType,
    'startDate': ?startDate,
    'url': ?url,
  };
}