$allocate static method
Implementation
static ffi.Pointer<UnnamedStruct$2> $allocate(
ffi.Allocator $allocator, {
required int year,
required int month,
required int day,
required int hour,
required int minute,
required int second,
}) => $allocator<UnnamedStruct$2>()
..ref.year = year
..ref.month = month
..ref.day = day
..ref.hour = hour
..ref.minute = minute
..ref.second = second;