Contact constructor

Contact({
  1. required String id,
  2. required String ownerUserId,
  3. String? avatarUrl,
  4. DateTime? createdAt,
  5. String? nickname,
  6. String? note,
})

Implementation

Contact({
  required super.id,
  required this.ownerUserId,
  super.avatarUrl,
  super.createdAt,
  super.nickname,
  this.note,
});