Raylib constructor

Raylib({
  1. Map<RaylibSupportedLibs, String?> libs = const {},
  2. Random? random,
  3. bool silent = false,
})

Implementation

Raylib({
  Map<RaylibSupportedLibs, String?> libs = const {},
  super.random,
  super.silent,
}) {
  bootMemoryBackend();
  boot();

  _initLibs(libs);
  _init();
}