fromJson static method

FactSchemaTemplate fromJson(
  1. dynamic wrapped
)
override

Implementation

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