ProfileAvatar constructor
ProfileAvatar({})
Implementation
ProfileAvatar(
{Key? key,
this.url,
this.profileName,
this.onClick,
this.borderWith = 5,
this.isEdit = true,
this.image,
this.noAction = false,
this.defaultImage,
this.iconSize,
this.size})
: child = profileName != null
? Text(
getShortOfName(profileName),
style: Get.find<AppFonts>().M(color: Colors.white),
)
: null,
super(key: key);