SetWindowPosition method

  1. @override
void SetWindowPosition(
  1. num x,
  2. num y
)
override

Implementation

@override
void SetWindowPosition(
  num x,
  num y,
) => run(
  () => RaylibDebugLabels.SetWindowPosition(x, y),
  () => rl.Core.SetWindowPosition(
    x.toInt(),
    y.toInt(),
  ),
);