of static method

NoteList of({
  1. int? count,
  2. List<INote>? data,
})

Implementation

static NoteList of({int? count, List<INote>? data}) {
  final self =
      NoteList(<String, dynamic>{}, mtype: NoteListRef, update: true);
  if (count != null) self.count = count;
  if (data != null) self.data = data;
  return self;
}