ContactModel constructor

ContactModel({
  1. int? id,
  2. int? isPro,
  3. int? userId,
  4. int? proId,
  5. String? uniqueId,
  6. int? lastContactDate,
  7. String? phone,
  8. String? firstName,
  9. String? lastName,
  10. String? infoName,
  11. String? thumbnail,
  12. String? comment,
  13. int? arckipel,
  14. String? userDisplayName,
  15. String? proDisplayname,
  16. String? firebaseId,
})

Implementation

ContactModel(
    {this.id,
    this.isPro,
    this.userId,
    this.proId,
    this.uniqueId,
    this.lastContactDate,
    this.phone,
    this.firstName,
    this.lastName,
    this.infoName,
    this.thumbnail,
    this.comment,
    this.arckipel,
    this.userDisplayName,
    this.proDisplayname,
    this.firebaseId});