column_decltype16 method

String? column_decltype16(
  1. PtrStmt arg1,
  2. int arg2
)
inherited

Implementation

String? column_decltype16(PtrStmt arg1, int arg2) {
  ffi.Pointer<pkgffi.Utf16> result = ffi.nullptr;
  try {
    var result = _h_sqlite3_column_decltype16(arg1, arg2);
    return result == ffi.nullptr ? null : result.toDartString();
  } finally {
    pkgffi.malloc.free(result);
  }
}