toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final customTag = this.customTag;
  final field = this.field;
  final inferred = this.inferred;
  final infoType = this.infoType;
  return {
    'customTag': ?customTag,
    'field': ?field,
    'inferred': ?inferred,
    'infoType': ?infoType,
  };
}