QueryInterchainAccountFromAddressResponse.deserialize constructor

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

Implementation

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