fromJson static method

FactList fromJson(
  1. dynamic wrapped
)
override

Implementation

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