Contact constructor

Contact({
  1. String? uid,
  2. String? username,
  3. String? nickname,
  4. String? avatar,
  5. String? description,
  6. String? tagIndex,
  7. String? namePinyin,
})

Implementation

Contact(
    {this.uid,
    this.username,
    this.nickname,
    this.avatar,
    this.description,
    this.tagIndex,
    this.namePinyin});