dumpBlob method
void
dumpBlob(
- IStatus status,
- Pointer<
IscQuad> blobId, - IAttachment attachment,
- ITransaction transaction,
- String file,
- bool txt,
Implementation
void dumpBlob(
IStatus status,
Pointer<IscQuad> blobId,
IAttachment attachment,
ITransaction transaction,
String file,
bool txt,
) {
final fileUtf = file.toNativeUtf8(allocator: mem);
try {
_dumbBlob(
self,
status.self,
blobId,
attachment.self,
transaction.self,
fileUtf,
txt ? 1 : 0,
);
status.checkStatus();
} finally {
mem.free(fileUtf);
}
}