whereApplicationId method

AccountQueryBuilder whereApplicationId(
  1. int applicationId
)

Include results with the given application id.

Implementation

AccountQueryBuilder whereApplicationId(int applicationId) {
  addQueryParameter('application-id', applicationId);
  return this;
}