AvatarButton constructor

const AvatarButton({
  1. Key? key,
  2. Color? backgroundColor,
  3. ImageProvider<Object>? backgroundImage,
  4. ImageProvider<Object>? foregroundImage,
  5. ImageErrorListener? onBackgroundImageError,
  6. ImageErrorListener? onForegroundImageError,
  7. Color? foregroundColor,
  8. double? radius,
  9. dynamic onExpanded(
    1. bool
    )?,
  10. Widget? child,
})

Implementation

const AvatarButton({
  super.key,
  this.backgroundColor,
  this.backgroundImage,
  this.foregroundImage,
  this.onBackgroundImageError,
  this.onForegroundImageError,
  this.foregroundColor,
  this.radius,
  this.onExpanded,
  this.child,
});