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