clearActiveTtsIdentity method

Future<void> clearActiveTtsIdentity()

Clears the active TTS identity (in-memory spec + persisted prefs).

See clearActiveInferenceIdentity: default throws rather than silently no-op'ing, so a non-overriding implementer fails loudly instead of leaving a stale persisted identity.

Implementation

Future<void> clearActiveTtsIdentity() async {
  throw UnimplementedError(
    'clearActiveTtsIdentity is not implemented by this ModelFileManager',
  );
}