SolidNavUserInfo constructor

const SolidNavUserInfo({
  1. required String userName,
  2. String? webId,
  3. bool showWebId = false,
  4. Widget? avatar,
  5. IconData? avatarIcon,
  6. double? avatarSize,
})

Implementation

const SolidNavUserInfo({
  required this.userName,
  this.webId,
  this.showWebId = false,
  this.avatar,
  this.avatarIcon,
  this.avatarSize,
});