toJson method

Map<String, dynamic> toJson()

Implementation

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