NotePage constructor

const NotePage({
  1. Key? key,
  2. @PageParam.new("note_id") required String noteId,
})

Implementation

const NotePage({
  super.key,
  @PageParam("note_id") required this.noteId,
});