NoteShareButton constructor

const NoteShareButton({
  1. Key? key,
  2. required Widget childPage,
  3. bool? simple = false,
})

Implementation

const NoteShareButton({
  super.key,
  required this.childPage,
  this.simple = false,
});