toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.schemaVersion != null) {
json[r'schema_version'] = this.schemaVersion;
} else {
json[r'schema_version'] = null;
}
json[r'policies'] = this.policies;
if (this.limits != null) {
json[r'limits'] = this.limits;
} else {
json[r'limits'] = null;
}
return json;
}