isVisible method

Future<bool> isVisible()

Returns bool - Whether the window is visible to the user.

Implementation

Future<bool> isVisible() async {
  return await _channel.invokeMethod('isVisible');
}