AvatarContent constructor

const AvatarContent({
  1. Key? key,
  2. required User? user,
  3. required double? size,
  4. required Color foregroundColor,
  5. TextStyle? textStyle,
  6. Map<String, String>? headers,
})

Creates an AvatarContent widget.

Implementation

const AvatarContent({
  super.key,
  required this.user,
  required this.size,
  required this.foregroundColor,
  this.textStyle,
  this.headers,
});