closeOverlay static method

Future<bool?> closeOverlay()

Closes overlay if open

Implementation

static Future<bool?> closeOverlay() async {
  final bool? _res = await _channel.invokeMethod('closeOverlay');
  return _res;
}