toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final jsonSchema = this.jsonSchema;
  final name = this.name;
  final schemaVersion = this.schemaVersion;
  return {
    'jsonSchema': ?jsonSchema,
    'name': ?name,
    'schemaVersion': ?schemaVersion,
  };
}