fromJson static method

Milestone fromJson(
  1. dynamic wrapped
)
override

Implementation

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