avatar static method
Implementation
static Widget avatar(
BuildContext context,
double radius,
String pageId,
String profileMemberId,
String? currentMemberId,
AppModel app,
String feedId) {
return getProfilePhotoButtonFromExternalProvider(app, context,
radius: radius,
externalProfileURLProvider: () =>
_getProfileAttributes(profileMemberId, app, feedId),
onPressed: () {
SwitchMember.switchMember(
context, app, pageId, profileMemberId, currentMemberId);
});
}