toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final excludedFields = this.excludedFields;
  final includedFields = this.includedFields;
  final instanceType = this.instanceType;
  final keyField = this.keyField;
  return {
    'excludedFields': ?excludedFields,
    'includedFields': ?includedFields,
    'instanceType': ?instanceType,
    'keyField': ?keyField,
  };
}