isResizable method

Future<bool> isResizable()

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

Implementation

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