NoteList constructor

NoteList(
  1. Map<String, dynamic> wrapped, {
  2. MSchemaRef mtype = NoteListRef,
  3. bool update = true,
})

Implementation

NoteList(Map<String, dynamic> wrapped,
    {MSchemaRef mtype = NoteListRef, bool update = true})
    : super(wrapped, mtype: mtype, update: false) {
  if (update == true) takeFromMap(wrapped, copyEntries: false);
}