IntegerError.deserialize constructor
IntegerError.deserialize({
- List<
int> ? bytes, - 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));
}