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