show static method

Future<void> show()

Ask iOS to show the iPhone X home indicator (bar at bottom of screen). It will then always be visible, as is the default setting.

Implementation

static Future<void> show() async {
  await _channel.invokeMethod('show');
}