CustomCircleAvatar constructor
const
CustomCircleAvatar({})
A customized circular avatar to display the profile picture with a small border
takes in @param image
for the asset image
@param size
to define the size of the avatar
@param nonAsset
if the image is coming over the network
@param byteImage
to display the image from the netwok
Implementation
const CustomCircleAvatar({
Key? key,
this.image,
this.size = 50,
this.nonAsset = false,
this.byteImage,
}) : super(key: key);