UserAvatar constructor

const UserAvatar({
  1. Key? key,
  2. required User user,
  3. required ChatTheme theme,
})

Implementation

const UserAvatar({Key? key, required this.user, required this.theme})
    : super(key: key);