You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
diplomatic-quarter/speech_to_text_/lib/speech_recognition_error.g....

23 lines
668 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'speech_recognition_error.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
SpeechRecognitionError _$SpeechRecognitionErrorFromJson(
Map<String, dynamic> json) {
return SpeechRecognitionError(
json['errorMsg'] as String,
json['permanent'] as bool,
);
}
Map<String, dynamic> _$SpeechRecognitionErrorToJson(
SpeechRecognitionError instance) =>
<String, dynamic>{
'errorMsg': instance.errorMsg,
'permanent': instance.permanent,
};