toJson method

Map<String, dynamic> toJson()

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,
  };
}