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;
}
if (this.removed != null) {
json[r'removed'] = this.removed;
} else {
json[r'removed'] = null;
}
return json;
}