storyViewUserList method

Widget storyViewUserList({
  1. bool isLiked = false,
})

Implementation

Widget storyViewUserList({bool isLiked = false}) {
  return ListTile(
    leading: CircleAvatar(
      foregroundImage:
          CachedNetworkImageProvider(avatar!.mediaURL.minURL.value),
    ),
    title: CustomText.costum1(displayName!.value, weight: FontWeight.bold),
    trailing: isLiked
        ? const Icon(
            Icons.favorite,
            color: Colors.red,
          )
        : null,
    onTap: () {},
  );
}