AgentModel constructor

AgentModel({
  1. int? id,
  2. String? displayName,
  3. String? firstName,
  4. String? lastName,
  5. String? email,
  6. String? phone,
  7. String? thumbnail,
  8. String? countryCode,
  9. String? zip,
  10. String? mainLanguage,
  11. List<String>? secondaryLanguages,
  12. _ProblemType? problemType,
})

Implementation

AgentModel(
    {this.id,
    this.displayName,
    this.firstName,
    this.lastName,
    this.email,
    this.phone,
    this.thumbnail,
    this.countryCode,
    this.zip,
    this.mainLanguage,
    this.secondaryLanguages,
    this.problemType});