UserAvatarCard constructor

const UserAvatarCard({
  1. Key? key,
  2. required UserVO userVO,
  3. required bool isAnonymous,
  4. Color? textColor,
  5. String? anonymousTitle,
  6. String? missingName,
})

Implementation

const UserAvatarCard({
  super.key,
  required this.userVO,
  required this.isAnonymous,
  this.textColor,
  this.anonymousTitle,
  this.missingName,
});