create static method
Implementation
static Pointer<SdlWindow> create(
{required String title,
int? x,
int? y,
required int w,
required int h,
flags = 0}) {
x ??= SDL_WINDOWPOS_CENTERED;
y ??= SDL_WINDOWPOS_CENTERED;
// 709
return sdlCreateWindow(title, x, y, w, h, flags);
}