toJson method

Map<String, dynamic> toJson()

Implementation

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