toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final catsAllowed = this.catsAllowed;
  final catsAllowedException = this.catsAllowedException;
  final dogsAllowed = this.dogsAllowed;
  final dogsAllowedException = this.dogsAllowedException;
  final petsAllowed = this.petsAllowed;
  final petsAllowedException = this.petsAllowedException;
  final petsAllowedFree = this.petsAllowedFree;
  final petsAllowedFreeException = this.petsAllowedFreeException;
  return {
    'catsAllowed': ?catsAllowed,
    'catsAllowedException': ?catsAllowedException,
    'dogsAllowed': ?dogsAllowed,
    'dogsAllowedException': ?dogsAllowedException,
    'petsAllowed': ?petsAllowed,
    'petsAllowedException': ?petsAllowedException,
    'petsAllowedFree': ?petsAllowedFree,
    'petsAllowedFreeException': ?petsAllowedFreeException,
  };
}