toJson method

Map<String, dynamic> toJson()

Implementation

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