Buyer constructor

Buyer({
  1. String? activeCreativeCount,
  2. String? bidder,
  3. List<String>? billingIds,
  4. String? displayName,
  5. String? maximumActiveCreativeCount,
  6. String? name,
})

Implementation

Buyer({
  this.activeCreativeCount,
  this.bidder,
  this.billingIds,
  this.displayName,
  this.maximumActiveCreativeCount,
  this.name,
});