toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final name = this.name;
final schema = this.schema;
final schemaType = this.schemaType;
final schemaVersion = this.schemaVersion;
return {
'createTime': ?createTime,
'description': ?description,
'name': ?name,
'schema': ?schema,
'schemaType': ?schemaType,
'schemaVersion': ?schemaVersion,
};
}