InitWindow method

void InitWindow(
  1. num width,
  2. num height,
  3. String title
)

Implementation

void InitWindow(
  num width,
  num height,
  String title,
) => run(
  () => 'InitWindow($width, $height, $title)',
  () => rl.Core.InitWindow(
    width.toInt(),
    height.toInt(),
    refStr(title),
  ),
);