SetWindowSize method

void SetWindowSize(
  1. num width,
  2. num height
)

Set window dimensions

Implementation

void SetWindowSize(
  num width,
  num height,
) => run(
  () => _debugLabels.SetWindowSize(width, height),
  () => _flat.SetWindowSize(
    width.toInt(),
    height.toInt(),
  ),
);