fromJson static method

FactSchemas fromJson(
  1. dynamic wrapped
)
override

Implementation

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