circularAssetImage method
Implementation
Widget circularAssetImage(
{Key key,
double radius = 35.0,
Color bgColor = Colors.white,
Color fgColor,
Widget child}) =>
CircleAvatar(
key: key,
radius: radius,
backgroundColor: bgColor,
child: child,
foregroundColor: fgColor,
backgroundImage: AssetImage(this),
);