IntegerError.deserialize constructor

IntegerError.deserialize({
  1. List<int>? bytes,
  2. CborObject<Object?>? object,
})

Implementation

factory IntegerError.deserialize({List<int>? bytes, CborObject? object}) {
  final values = CborTagSerializable.decodeTaggedValue(
    identifier: BlockchainUtilsSerializationIdentifier.integerError,
    cborBytes: bytes,
    cborObject: object,
  );
  return IntegerError(values.rawValueAt(0));
}