AccountUser constructor

AccountUser({
  1. bool? admin,
  2. String? emailAddress,
  3. bool? orderManager,
  4. bool? paymentsAnalyst,
  5. bool? paymentsManager,
  6. bool? reportingManager,
})

Implementation

AccountUser({
  this.admin,
  this.emailAddress,
  this.orderManager,
  this.paymentsAnalyst,
  this.paymentsManager,
  this.reportingManager,
});