SetWindowSize method

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

Implementation

void SetWindowSize(
  num width,
  num height,
) => run(
  () => 'SetWindowSize($width, $height)',
  () => rl.Core.SetWindowSize(
    width.toInt(),
    height.toInt(),
  ),
);