toJson method

Map<String, dynamic> toJson()

Implementation

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