profilePicture method

Widget profilePicture(
  1. BuildContext context
)

Implementation

Widget profilePicture(BuildContext context) {
  return CircleAvatar(
    backgroundColor: Colors.grey[500],
    backgroundImage: viewer!.userModel!.profilePicture,
    radius: viewer!.inline ? 12 : 16,
  );
}