UserAllocation constructor

const UserAllocation({
  1. String? airdropId,
  2. String? address,
  3. String? claimed,
  4. String? forfeited,
  5. List<String> allocations = const [],
})

Implementation

const UserAllocation({
  this.airdropId,
  this.address,
  this.claimed,
  this.forfeited,
  this.allocations = const [],
});