EntryRedemptionResponse constructor

EntryRedemptionResponse({
  1. required String id,
  2. required DateTime createdAt,
  3. required num points,
  4. String? prizeName,
  5. String? code,
  6. String? state,
})

Implementation

EntryRedemptionResponse({
  required this.id,
  required this.createdAt,
  required this.points,
  this.prizeName,
  this.code,
  this.state,
});