fromJson static method

Congregant fromJson(
  1. dynamic wrapped
)
override

Implementation

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