closeOverlay static method

Future<bool?> closeOverlay()

Closes overlau if open

Implementation

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