fromString static method

ExtractionMethod fromString(
  1. String value
)

Implementation

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