toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accessControlMode = this.accessControlMode;
  final databaseType = this.databaseType;
  final documentCreatorDefaultRole = this.documentCreatorDefaultRole;
  final location = this.location;
  final qaEnabled = this.qaEnabled;
  final state = this.state;
  return {
    'accessControlMode': ?accessControlMode,
    'databaseType': ?databaseType,
    'documentCreatorDefaultRole': ?documentCreatorDefaultRole,
    'location': ?location,
    'qaEnabled': ?qaEnabled,
    'state': ?state,
  };
}