fromValue static method

IlluminationMode fromValue(
  1. String value
)

Implementation

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