CustomListView constructor

CustomListView(
  1. {Key key,
  2. List<NotesModel> notesList,
  3. Function openNote,
  4. Function onDismissed,
  5. List<NotificationModel> notificationList}
)

Implementation

CustomListView(
    {Key key,
    this.notesList,
    this.openNote,
    this.onDismissed,
    this.notificationList})
    : super(key: key);