fromValue static method

OcrOrientation fromValue(
  1. String value
)

Implementation

static OcrOrientation fromValue(String value) =>
    OcrOrientation.values.firstWhere((e) => e.value == value);