from static method

AvailabilityState? from(
  1. String? value
)

Implementation

static AvailabilityState? from(String? value) =>
    _values.firstOrNullWhere((state) => state.value == value);