SuiIntent.deserialize constructor
Implementation
factory SuiIntent.deserialize(List<int> bytes, {String? property}) {
final decode = BcsSerialization.deserialize(
bytes: bytes, layout: layout(property: property));
return SuiIntent.fromStruct(decode);
}