APIParameter.query constructor
APIParameter.query(})
Implementation
APIParameter.query(this.name,
{this.description,
this.schema,
this.content,
this.style,
bool? isRequired,
bool? deprecated,
bool? allowEmptyValue,
bool? explode,
bool? allowReserved}) {
this.isRequired = isRequired;
this.isDeprecated = deprecated;
this.allowEmptyValue = allowEmptyValue;
this.allowReserved = allowReserved;
this.explode = explode;
this.location = APIParameterLocation.query;
}