hasPhoto property

bool get hasPhoto

check if the ChatUser has photoUrl

Implementation

bool get hasPhoto {
  String? photoUrl = author.photoUrl;
  return photoUrl != null && photoUrl.isNotEmpty;
}