Contact constructor

Contact({
  1. String? selectDepartment,
  2. String? name,
  3. String? email,
  4. String? subject,
  5. int? contactNumber,
  6. String? message,
})

Implementation

Contact(
    {
    //   this.q1,
    // this.q2,
    // this.q3,
    // this.q4,
    this.selectDepartment,
    this.name,
    this.email,
    this.subject,
    this.contactNumber,
    this.message});