FriendSearchInfo constructor

FriendSearchInfo({
  1. required ContactInfo contact,
  2. HitType hitType = HitType.none,
  3. RecordHitInfo? hitInfo,
})

Implementation

FriendSearchInfo(
    {required this.contact,
    HitType hitType = HitType.none,
    RecordHitInfo? hitInfo})
    : super(hitType: hitType, hitInfo: hitInfo);