column_decltype method

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

Implementation

String? column_decltype(PtrStmt arg1, int arg2) {
  PtrString result = ffi.nullptr;
  try {
    var result = _h_sqlite3_column_decltype(arg1, arg2);
    return result == ffi.nullptr ? null : result.toDartString();
  } finally {
    pkgffi.malloc.free(result);
  }
}