buildCircleAvatar method

Widget buildCircleAvatar(
  1. Widget current
)

Implementation

Widget buildCircleAvatar(Widget current) => CircleAvatar(
    backgroundColor: color,
    backgroundImage: backgroundImage,
    onBackgroundImageError: onBackgroundImageError,
    onForegroundImageError: onForegroundImageError,
    foregroundColor: foregroundColor,
    foregroundImage: foregroundImage,
    radius: radius,
    minRadius: minRadius,
    maxRadius: maxRadius,
    child: current);