StreamGradientAvatar constructor

const StreamGradientAvatar({
  1. Key? key,
  2. required String name,
  3. required String userId,
})

Fallback user avatar with a polygon gradient overlaid with text

Implementation

const StreamGradientAvatar({
  super.key,
  required this.name,
  required this.userId,
});