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