openBlob method
Implementation
IBlob openBlob(
IStatus status,
ITransaction transaction,
Pointer<IscQuad> id, [
int bpbLength = 0,
Pointer<Uint8>? bpb,
]) {
final res = _openBlob(
self,
status.self,
transaction.self,
id,
bpbLength,
bpb ?? nullptr,
);
status.checkStatus();
return IBlob(res);
}