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