SpeechRecognitionResultError.fromJson constructor

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

Parse from a json

Implementation

factory SpeechRecognitionResultError.fromJson(Map<String, dynamic> json) =>
    SpeechRecognitionResultError(
      error: TdError.fromJson(json['error']),
    );