unpackFromBytes method

IsoMsg unpackFromBytes(
  1. Uint8List bytes
)

Implementation

IsoMsg unpackFromBytes(Uint8List bytes) {
  final IsoMsg message = createComponent();
  unpack(message, IsoBuffer.wrap(bytes));
  return message;
}