fromJson static method

Birthday fromJson(
  1. dynamic wrapped
)
override

Implementation

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