onCircleAvatar method
Implementation
CircleAvatar onCircleAvatar({
Color? backgroundColor,
Color? foregroundColor,
ImageProvider? backgroundImage,
double? radius,
double? minRadius,
double? maxRadius,
}) {
this.backgroundColor = backgroundColor ?? this.backgroundColor;
this.backgroundImage = backgroundImage ?? this.backgroundImage;
this.foregroundColor = foregroundColor ?? this.foregroundColor;
this.radius = radius ?? this.radius;
this.minRadius = minRadius ?? this.minRadius;
this.maxRadius = maxRadius ?? this.maxRadius;
return circleAvatar;
}