AvatarWidget constructor

const AvatarWidget({
  1. Key? key,
  2. Avatar? avatar,
  3. AvatarRadius? radius,
  4. String? title,
  5. int? color,
  6. double opacity = 1,
  7. bool isOnline = false,
  8. bool isAway = false,
  9. Widget? label,
  10. FutureOr<void> onForbidden()?,
  11. BoxShape shape = BoxShape.circle,
  12. Widget? child,
})

Implementation

const AvatarWidget({
  super.key,
  this.avatar,
  this.radius,
  this.title,
  this.color,
  this.opacity = 1,
  this.isOnline = false,
  this.isAway = false,
  this.label,
  this.onForbidden,
  this.shape = BoxShape.circle,
  this.child,
});