SetWindowMinSize method

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

Implementation

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