getByValue static method

LanesControlImage getByValue(
  1. int value
)

Implementation

static LanesControlImage getByValue(int value) {
  return LanesControlImage.values.firstWhere((x) => x.rawValue == value);
}