AuctionPackage constructor

AuctionPackage({
  1. String? createTime,
  2. String? creator,
  3. String? description,
  4. String? displayName,
  5. String? name,
  6. List<String>? subscribedClients,
  7. String? updateTime,
})

Implementation

AuctionPackage({
  this.createTime,
  this.creator,
  this.description,
  this.displayName,
  this.name,
  this.subscribedClients,
  this.updateTime,
});