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