SolidNavUserConfig constructor

const SolidNavUserConfig({
  1. required String userName,
  2. String? userId,
  3. bool showUserId = false,
  4. Widget? avatar,
  5. IconData? avatarIcon,
  6. double? avatarSize,
  7. Color? headerBackgroundColor,
  8. Color? headerTextColor,
})

Implementation

const SolidNavUserConfig({
  required this.userName,
  this.userId,
  this.showUserId = false,
  this.avatar,
  this.avatarIcon,
  this.avatarSize,
  this.headerBackgroundColor,
  this.headerTextColor,
});