Params constructor

Params({
  1. DateTime? startDate,
  2. DateTime? endDate,
  3. String? format,
  4. String? productId,
  5. String? accountId,
  6. String? profileId,
  7. String? email,
  8. User? user,
  9. bool? newYorkState,
})

Implementation

Params({
  this.startDate,
  this.endDate,
  this.format,
  this.productId,
  this.accountId,
  this.profileId,
  this.email,
  this.user,
  this.newYorkState,
});