fromJson static method

FactSchemaList fromJson(
  1. dynamic wrapped
)
override

Implementation

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