toJson method

Map<String, dynamic> toJson()

Implementation

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