UserAvatar constructor

const UserAvatar({
  1. Key? key,
  2. FirebaseAuth? auth,
  3. double? size,
  4. ShapeBorder? shape,
  5. Color? placeholderColor,
})

Implementation

const UserAvatar({
  Key? key,
  this.auth,
  this.size,
  this.shape,
  this.placeholderColor,
}) : super(key: key);