fromJson static method

CorpusCategory fromJson(
  1. String json
)

Parses a CorpusCategory from its name.

Implementation

static CorpusCategory fromJson(String json) => CorpusCategory.values.byName(
      json,
    );