QueryInterpretation.fromJson constructor

QueryInterpretation.fromJson(
  1. Map json_
)

Implementation

QueryInterpretation.fromJson(core.Map json_)
    : this(
        interpretationType: json_['interpretationType'] as core.String?,
        interpretedQuery: json_['interpretedQuery'] as core.String?,
        reason: json_['reason'] as core.String?,
      );