Contact constructor

const Contact({
  1. String? firstName,
  2. String? lastName,
  3. String? email,
  4. String? phone,
  5. String? address,
  6. String? icon,
  7. String? id,
  8. String? $id,
  9. int? cstamp,
  10. String? cby,
  11. String? uby,
  12. int? ustamp,
})

Implementation

const Contact({
  this.firstName,
  this.lastName,
  this.email,
  this.phone,
  this.address,
  this.icon,
  this.id,
  this.$id,
  this.cstamp,
  this.cby,
  this.uby,
  this.ustamp,
});