SquareAvatar constructor

const SquareAvatar({
  1. Key? key,
  2. double? radius,
  3. Color? backgroundColor,
  4. ImageProvider<Object>? backgroundImage,
})

Square version of CircleAvatar.

Can be used in place of CircleAvatar.

四角版のCircleAvatar

CircleAvatarの代わりに使用できます。

Implementation

const SquareAvatar({
  super.key,
  this.radius,
  this.backgroundColor,
  this.backgroundImage,
});