fromJson static method

NoteList fromJson(
  1. dynamic wrapped
)
override

Implementation

static NoteList fromJson(wrapped) => wrapped is NoteList
    ? wrapped
    : NoteList(wrapped as Map<String, dynamic>, update: true);