AvatarComponent constructor

const AvatarComponent({
  1. required String imageUrl,
  2. double radius = 36,
  3. Color? borderColor,
  4. int? notificationCount,
  5. Color notificationColor = Colors.red,
  6. Key? key,
})

Implementation

const AvatarComponent(
    {required this.imageUrl,
    this.radius = 36,
    this.borderColor,
    this.notificationCount,
    this.notificationColor = Colors.red,
    Key? key})
    : super(key: key);