startTransaction method

ITransaction startTransaction(
  1. IStatus status, [
  2. int tpbLength = 0,
  3. Pointer<Uint8>? tpb
])

Implementation

ITransaction startTransaction(IStatus status,
    [int tpbLength = 0, Pointer<Uint8>? tpb]) {
  final res = _startTransaction(self, status.self, tpbLength, tpb ?? nullptr);
  status.checkStatus();
  return ITransaction(res);
}