AmountConverterException.deserialize constructor
AmountConverterException.deserialize({
- List<
int> ? bytes, - CborObject<
Object?> ? object,
Implementation
factory AmountConverterException.deserialize({
List<int>? bytes,
CborObject? object,
}) {
final values = CborTagSerializable.decodeTaggedValue(
identifier: BlockchainUtilsSerializationIdentifier.amountConverterError,
cborBytes: bytes,
cborObject: object,
);
return AmountConverterException(
values.rawValueAt(0),
details: values.maybeRawMapAt<String, String?>(1),
);
}