SpeechRecognitionResultPending.fromJson constructor

SpeechRecognitionResultPending.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory SpeechRecognitionResultPending.fromJson(Map<String, dynamic> json) =>
    SpeechRecognitionResultPending(
      partialText: json['partial_text'],
    );