toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'access_request_enabled'] = this.accessRequestEnabled;
json[r'enabled'] = this.enabled;
if (this.targetResolution != null) {
json[r'target_resolution'] = this.targetResolution;
} else {
json[r'target_resolution'] = null;
}
return json;
}