imageErrorWidget method
Implementation
Widget imageErrorWidget() {
if (!(blocked || (unknown && Constants.enableContactSync))) {
if (errorWidget != null) {
return errorWidget!;
}
}
return clipOval
? ClipOval(
child: AppUtils.assetIcon(
assetName: getSingleOrGroup(isGroup),
height: height,
width: width,
fit: BoxFit.cover,
),
)
: AppUtils.assetIcon(
assetName: getSingleOrGroup(isGroup),
height: height,
width: width,
fit: BoxFit.cover,
);
}