SetWindowMaxSize method
Set window maximum dimensions (for ConfigFlags.FLAG_WINDOW_RESIZABLE)
Implementation
void SetWindowMaxSize(
num width,
num height,
) => run(
() => _debugLabels.SetWindowMaxSize(width, height),
() => _flat.SetWindowMaxSize(
width.toInt(),
height.toInt(),
),
);