AdParam constructor

AdParam({
  1. int? gender,
  2. String? countryCode,
  3. List<int>? detailedCreativeTypeList,
  4. RequestOptions? options,
})

Implementation

AdParam({
  this.gender,
  this.countryCode,
  this.detailedCreativeTypeList,
  RequestOptions? options,
}) {
  requestOptions = options ?? RequestOptions();
}