disable static method

Future<void> disable()

Dismiss the native tab bar and return to the Flutter app.

Implementation

static Future<void> disable() async {
  if (!_enabled) return;
  await _channel.invokeMethod('disable');
  _reset();
}