column_decltype method
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);
}
}