fromString static method
Implementation
static ExtractionMethod fromString(String value) {
return ExtractionMethod.values.firstWhere(
(e) => e.name == value,
orElse: () => ExtractionMethod.unknown,
);
}
static ExtractionMethod fromString(String value) {
return ExtractionMethod.values.firstWhere(
(e) => e.name == value,
orElse: () => ExtractionMethod.unknown,
);
}