NPicture constructor

const NPicture({
  1. Key? key,
  2. required Ndk ndk,
  3. String? pubkey,
  4. Metadata? metadata,
  5. bool useCircleAvatar = true,
  6. double? circleAvatarRadius,
})

Implementation

const NPicture({
  super.key,
  required this.ndk,
  this.pubkey,
  this.metadata,
  this.useCircleAvatar = true,
  this.circleAvatarRadius,
});