MsgSetOperatorAddress.deserialize constructor
Implementation
factory MsgSetOperatorAddress.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return MsgSetOperatorAddress(
signer: decode.getString<String?>(1),
operator_: decode.getString<String?>(2),
);
}