setShowIntroMessage static method

Future<void> setShowIntroMessage(
  1. bool enabled
)

Sets if intro message is shown on start.

Implementation

static Future<void> setShowIntroMessage(bool enabled) async {
  await _channel.invokeMethod('setShowIntroMessage', {
    'enabled': enabled,
  });
}