QueryInterchainAccountFromAddressRequest.deserialize constructor

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

Implementation

factory QueryInterchainAccountFromAddressRequest.deserialize(
  List<int> bytes,
) {
  final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
  return QueryInterchainAccountFromAddressRequest(
    owner: decode.getString<String?>(1),
    connectionId: decode.getString<String?>(2),
  );
}