commit_hook method

PtrVoid? commit_hook(
  1. PtrSqlite3 arg1,
  2. PtrDefxSize ptrDefxSize,
  3. PtrVoid arg2
)
inherited

Implementation

PtrVoid? commit_hook(PtrSqlite3 arg1, PtrDefxSize ptrDefxSize, PtrVoid arg2) {
  var result = _h_sqlite3_commit_hook(arg1, ptrDefxSize, arg2);
  return result == ffi.nullptr ? null : result;
}