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