ttsEnable method
Enables TTS playback for the current publication with optional preferences.
fromLocator optionally starts TTS from a saved position.
Implementation
@override
Future<void> ttsEnable(TTSPreferences? preferences, {Locator? fromLocator}) =>
methodChannel.invokeMethod('ttsEnable', [
preferences?.toMap(),
fromLocator?.toJson(),
]);