setShowIntroduction method

  1. @override
Future<void> setShowIntroduction(
  1. bool show
)
override

Sets the ApplicationSettings.showIntroduction value.

Implementation

@override
Future<void> setShowIntroduction(bool show) async {
  Log.debug('setShowIntroduction($show)', '$runtimeType');
  await _set(settings: (e) => e..showIntroduction = show);
}