fromJson static method

Note fromJson(
  1. dynamic wrapped
)
override

Implementation

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