InstallerDTO constructor

const InstallerDTO({
  1. String? firstName,
  2. String? lastName,
  3. String? email,
  4. String? company,
})

Implementation

const InstallerDTO({
  this.firstName,
  this.lastName,
  this.email,
  this.company,
});