AdwAvatar constructor

const AdwAvatar({
  1. Key? key,
  2. required Widget child,
  3. double size = defaultAvatarSize,
  4. AdwColors? backgroundColor,
  5. ImageProvider<Object>? backgroundImage,
})

Implementation

const AdwAvatar({
  Key? key,
  required this.child,
  this.size = defaultAvatarSize,
  this.backgroundColor,
  this.backgroundImage,
}) : super(key: key);