toggleSubtitle method

Future<void> toggleSubtitle()

Toggle subtitle.

Implementation

Future<void> toggleSubtitle() async {
  _isSub ? hideSubtitle() : showSubtitle();
}