AvatarBadge constructor

const AvatarBadge({
  1. Key? key,
  2. Widget? child,
  3. double? size,
  4. double? borderRadius,
  5. Color? color,
})

Implementation

const AvatarBadge({
  super.key,
  this.child,
  this.size,
  this.borderRadius,
  this.color,
});