AvatarHandler constructor

const AvatarHandler({
  1. Key? key,
  2. required BuildContext context,
  3. required List<User> author,
})

Implementation

const AvatarHandler({
  super.key,
  required this.context,
  required this.author,
});