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