$allocate static method
Implementation
static ffi.Pointer<XBoardStats> $allocate(
ffi.Allocator $allocator, {
required int time,
required int n_nodes,
required int n_games,
}) => $allocator<XBoardStats>()
..ref.time = time
..ref.n_nodes = n_nodes
..ref.n_games = n_games;