toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final componentName = this.componentName;
  final componentType = this.componentType;
  final confirmationLevel = this.confirmationLevel;
  final inferred = this.inferred;
  final replaced = this.replaced;
  final spellCorrected = this.spellCorrected;
  final unexpected = this.unexpected;
  return {
    'componentName': ?componentName,
    'componentType': ?componentType,
    'confirmationLevel': ?confirmationLevel,
    'inferred': ?inferred,
    'replaced': ?replaced,
    'spellCorrected': ?spellCorrected,
    'unexpected': ?unexpected,
  };
}