toJson method

Map<String, dynamic> toJson()

Implementation

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