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