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