malloc64 method
Implementation
PtrVoid? malloc64(int arg1) {
if (libVersionNumber < 3008007) {
throw dbsql.DatabaseException('API sqlite3_malloc64 is not available before 3.8.7');
}
var result = _h_sqlite3_malloc64!(arg1);
return result == ffi.nullptr ? null : result;
}