$allocate static method
Implementation
static ffi.Pointer<rpcent> $allocate(
ffi.Allocator $allocator, {
required ffi.Pointer<ffi.Char> r_name,
required ffi.Pointer<ffi.Pointer<ffi.Char>> r_aliases,
required int r_number,
}) => $allocator<rpcent>()
..ref.r_name = r_name
..ref.r_aliases = r_aliases
..ref.r_number = r_number;