$allocate static method

Pointer<exception> $allocate(
  1. Allocator $allocator, {
  2. required int type,
  3. required Pointer<Char> name,
  4. required double arg1,
  5. required double arg2,
  6. required double retval,
})

Implementation

static ffi.Pointer<exception> $allocate(
ffi.Allocator $allocator, {
required int type,
required ffi.Pointer<ffi.Char> name,
required double arg1,
required double arg2,
required double retval,
}) => $allocator<exception>()
..ref.type = type
..ref.name = name
..ref.arg1 = arg1
..ref.arg2 = arg2
..ref.retval = retval;