malloc method

PtrVoid? malloc(
  1. int arg1
)
inherited

Implementation

PtrVoid? malloc(int arg1) {
  var result = _h_sqlite3_malloc(arg1);
  return result == ffi.nullptr ? null : result;
}