NoteDetailScreen constructor

const NoteDetailScreen({
  1. Key? key,
  2. String? noteId,
  3. String? topicId,
  4. String? sessionId,
  5. String? initialContent,
})

Implementation

const NoteDetailScreen({
  super.key,
  this.noteId,
  this.topicId,
  this.sessionId,
  this.initialContent,
});