calloc method
Implementation
@override
Pointer<SdlEvent> calloc() {
final pointer = ffi.calloc<SdlEvent>();
pointer.ref.adevice.type = type;
pointer.ref.adevice.reserved = reserved;
pointer.ref.adevice.timestamp = timestamp;
pointer.ref.adevice.which = which;
pointer.ref.adevice.recording = recording;
return pointer;
}