MsgSetOperatorAddress.deserialize constructor

MsgSetOperatorAddress.deserialize(
  1. List<int> bytes
)

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),
  );
}