AvatarImage constructor

const AvatarImage({
  1. required ImageProvider<Object> image,
  2. String? label,
  3. VoidCallback? onPressed,
  4. Color? textColor,
  5. Color? backgroundColor,
})

Implementation

const AvatarImage({
  required this.image,
  this.label,
  this.onPressed,
  this.textColor,
  this.backgroundColor,
});