toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final countries = this.countries;
  final restOfWorld = this.restOfWorld;
  final syncWithProduction = this.syncWithProduction;
  return {
    'countries': ?countries,
    'restOfWorld': ?restOfWorld,
    'syncWithProduction': ?syncWithProduction,
  };
}