circleAvatar method
Widget
circleAvatar({
- double radius = 24,
- Color backgroundColor = Colors.grey,
- EdgeInsets? padding,
- ImageProvider<
Object> ? backgroundImage,
Implementation
Widget circleAvatar({
double radius = 24,
Color backgroundColor = Colors.grey,
EdgeInsets? padding,
ImageProvider? backgroundImage,
}) => CircleAvatar(
radius: radius,
backgroundColor: backgroundColor,
backgroundImage: backgroundImage,
child: Padding(padding: padding ?? EdgeInsets.zero, child: this),
);