resize function

Future<void> resize(
  1. int width,
  2. int height
)

Resize window.

Implementation

Future<void> resize(int width, int height) {
  return post('resize', {'width': width, 'height': height});
}