fromString static method

OTAState fromString(
  1. String value
)

Create from string value

Implementation

static OTAState fromString(String value) {
  return OTAState.values.firstWhere(
    (state) => state.name == value,
    orElse: () => OTAState.preparing,
  );
}