NUserProfile constructor

const NUserProfile({
  1. Key? key,
  2. required Ndk ndk,
  3. String? pubkey,
  4. bool showLogoutButton = true,
  5. bool showName = true,
  6. bool showNip05Indicator = true,
  7. bool showNip05 = true,
  8. VoidCallback? onLogout,
})

Implementation

const NUserProfile({
  super.key,
  required this.ndk,
  this.pubkey,
  this.showLogoutButton = true,
  this.showName = true,
  this.showNip05Indicator = true,
  this.showNip05 = true,
  this.onLogout,
});