EditGetStatementCompletionResult.fromJson constructor

EditGetStatementCompletionResult.fromJson(
  1. JsonDecoder jsonDecoder,
  2. String jsonPath,
  3. Object? json
)

Implementation

factory EditGetStatementCompletionResult.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    SourceChange change;
    if (json.containsKey('change')) {
      change = SourceChange.fromJson(
          jsonDecoder, '$jsonPath.change', json['change']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'change');
    }
    bool whitespaceOnly;
    if (json.containsKey('whitespaceOnly')) {
      whitespaceOnly = jsonDecoder.decodeBool(
          '$jsonPath.whitespaceOnly', json['whitespaceOnly']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'whitespaceOnly');
    }
    return EditGetStatementCompletionResult(change, whitespaceOnly);
  } else {
    throw jsonDecoder.mismatch(
        jsonPath, 'edit.getStatementCompletion result', json);
  }
}