show static method

Future<void> show()

Implementation

static Future<void> show() async {
  try {
    await channel.invokeMethod('Show');
  } catch (e) {
    debugPrint(e.toString());
  }
}