toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final etag = this.etag;
final fields = this.fields;
final kind = this.kind;
final schemaId = this.schemaId;
final schemaName = this.schemaName;
return {
'displayName': ?displayName,
'etag': ?etag,
'fields': ?fields,
'kind': ?kind,
'schemaId': ?schemaId,
'schemaName': ?schemaName,
};
}