find static method

ImageAlgorithm find(
  1. String name
)

Implementation

static ImageAlgorithm find(String name) {
  return ImageAlgorithm.values.firstWhere((algo) => algo.name == name,
      orElse: () => ImageAlgorithm.BINARIZATION);
}