toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final coffeeMaker = this.coffeeMaker;
final coffeeMakerException = this.coffeeMakerException;
final cookware = this.cookware;
final cookwareException = this.cookwareException;
final dishwasher = this.dishwasher;
final dishwasherException = this.dishwasherException;
final indoorGrill = this.indoorGrill;
final indoorGrillException = this.indoorGrillException;
final kettle = this.kettle;
final kettleException = this.kettleException;
final kitchenAvailable = this.kitchenAvailable;
final kitchenAvailableException = this.kitchenAvailableException;
final microwave = this.microwave;
final microwaveException = this.microwaveException;
final minibar = this.minibar;
final minibarException = this.minibarException;
final outdoorGrill = this.outdoorGrill;
final outdoorGrillException = this.outdoorGrillException;
final oven = this.oven;
final ovenException = this.ovenException;
final refrigerator = this.refrigerator;
final refrigeratorException = this.refrigeratorException;
final sink = this.sink;
final sinkException = this.sinkException;
final snackbar = this.snackbar;
final snackbarException = this.snackbarException;
final stove = this.stove;
final stoveException = this.stoveException;
final teaStation = this.teaStation;
final teaStationException = this.teaStationException;
final toaster = this.toaster;
final toasterException = this.toasterException;
return {
'coffeeMaker': ?coffeeMaker,
'coffeeMakerException': ?coffeeMakerException,
'cookware': ?cookware,
'cookwareException': ?cookwareException,
'dishwasher': ?dishwasher,
'dishwasherException': ?dishwasherException,
'indoorGrill': ?indoorGrill,
'indoorGrillException': ?indoorGrillException,
'kettle': ?kettle,
'kettleException': ?kettleException,
'kitchenAvailable': ?kitchenAvailable,
'kitchenAvailableException': ?kitchenAvailableException,
'microwave': ?microwave,
'microwaveException': ?microwaveException,
'minibar': ?minibar,
'minibarException': ?minibarException,
'outdoorGrill': ?outdoorGrill,
'outdoorGrillException': ?outdoorGrillException,
'oven': ?oven,
'ovenException': ?ovenException,
'refrigerator': ?refrigerator,
'refrigeratorException': ?refrigeratorException,
'sink': ?sink,
'sinkException': ?sinkException,
'snackbar': ?snackbar,
'snackbarException': ?snackbarException,
'stove': ?stove,
'stoveException': ?stoveException,
'teaStation': ?teaStation,
'teaStationException': ?teaStationException,
'toaster': ?toaster,
'toasterException': ?toasterException,
};
}