buildProfileImage method

InkWell buildProfileImage()

Implementation

InkWell buildProfileImage() {
  return InkWell(
    onTap: onAvatarClick,
    child: Container(
        margin:
            const EdgeInsets.only(left: 19.0, top: 10, bottom: 10, right: 10),
        child: Stack(
          children: [
            buildProfileImageView(),
            item.isConversationUnRead!
                ? buildConvReadIcon()
                : const SizedBox(),
            item.isEmailContact().checkNull()
                ? buildEmailIcon()
                : const SizedBox.shrink(),
          ],
        )),
  );
}