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