Detail constructor

Detail({
  1. String? id,
  2. String? createdAt,
  3. String? name,
  4. String? surname,
  5. bool? isVerified,
  6. String? phoneNumber,
  7. String? socialSecurityNo,
  8. String? birthday,
  9. String? gender,
  10. String? companyName,
  11. String? taxOffice,
  12. String? taxNumber,
  13. String? fullName,
})

Implementation

Detail(
    {this.id,
    this.createdAt,
    this.name,
    this.surname,
    this.isVerified,
    this.phoneNumber,
    this.socialSecurityNo,
    this.birthday,
    this.gender,
    this.companyName,
    this.taxOffice,
    this.taxNumber,
    this.fullName});