$allocate static method
Implementation
static ffi.Pointer<Base> $allocate(
ffi.Allocator $allocator, {
required ffi.Pointer<Game> game,
required int n_games,
required int size,
}) => $allocator<Base>()
..ref.game = game
..ref.n_games = n_games
..ref.size = size;