toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deleted = this.deleted;
final normalize = this.normalize;
final references = this.references;
final schema = this.schema;
final schemaType = this.schemaType;
return {
'deleted': ?deleted,
'normalize': ?normalize,
'references': ?references,
'schema': ?schema,
'schemaType': ?schemaType,
};
}