GetRandomValue method

  1. @override
int GetRandomValue(
  1. num min,
  2. num max
)
override

Implementation

@override
int GetRandomValue(
  num min,
  num max,
) => run(
  () => RaylibDebugLabels.GetRandomValue(min, max),
  () => rl.Core.GetRandomValue(
    min.toInt(),
    max.toInt(),
  ),
);