SetWindowMaxSize method

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

Implementation

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