getType static method
Implementation
static InsightType getType(String? s) => InsightType.values.firstWhere(
(final InsightType key) => _VALUES[key] == s,
orElse: () => InsightType.UNDEFINED,
);
static InsightType getType(String? s) => InsightType.values.firstWhere(
(final InsightType key) => _VALUES[key] == s,
orElse: () => InsightType.UNDEFINED,
);