isClosable method

Future<bool> isClosable()

Returns bool - Whether the window can be manually closed by user.

@platforms windows

Implementation

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