We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cdba97 commit 26638c8Copy full SHA for 26638c8
lib/pangea/toolbar/controllers/tts_controller.dart
@@ -49,9 +49,9 @@ class TtsController extends ChangeNotifier {
49
return PlatformInfos.isWindows;
50
}
51
52
- bool _hasLoadedTextToSpeech = false;
53
- bool get hasLoadedTextToSpeech => _hasLoadedTextToSpeech;
54
- set hasLoadedTextToSpeech(bool value) {
+ bool? _hasLoadedTextToSpeech;
+ bool? get hasLoadedTextToSpeech => _hasLoadedTextToSpeech;
+ set hasLoadedTextToSpeech(bool? value) {
55
if (_hasLoadedTextToSpeech != value) {
56
_hasLoadedTextToSpeech = value;
57
notifyListeners();
0 commit comments