Sub2ApiAdminBatchUpdateRedeemCodesRequest constructor

Sub2ApiAdminBatchUpdateRedeemCodesRequest({
  1. required List<int> ids,
  2. Sub2ApiAdminRedeemCodeStatus? status,
  3. DateTime? expiresAt,
  4. bool clearExpiresAt = false,
  5. String? notes,
  6. int? groupId,
  7. bool clearGroupId = false,
})

Implementation

Sub2ApiAdminBatchUpdateRedeemCodesRequest({
  required List<int> ids,
  this.status,
  this.expiresAt,
  this.clearExpiresAt = false,
  this.notes,
  this.groupId,
  this.clearGroupId = false,
}) : ids = List.unmodifiable(ids);