fromJson static method

Note fromJson(
  1. dynamic wrapped
)
override

Implementation

static Note fromJson(wrapped) => wrapped is Note
  ? wrapped
  : mmodelRegistry.instantiate(json: wrapped, type: NoteRef);