NUserProfile constructor

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

Implementation

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