getOverlayPosition static method
Get the current overlay position
return the current overlay position
Implementation
static Future<OverlayPosition> getOverlayPosition() async {
final Map<Object?, Object?>? _res = await _channel.invokeMethod(
'getOverlayPosition',
);
return OverlayPosition.fromMap(_res);
}