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