SpellingCorrection.fromJson constructor

SpellingCorrection.fromJson(
  1. Map json_
)

Implementation

SpellingCorrection.fromJson(core.Map json_)
    : this(
        corrected: json_['corrected'] as core.bool?,
        correctedText: json_['correctedText'] as core.String?,
      );