read static method

AppStoreState? read(
  1. String? appleValue
)

Implementation

static AppStoreState? read(String? appleValue) => appleValue == null
    ? null
    : values.firstWhere(
        (s) => s.appleValue == appleValue,
        orElse: () => unknown,
      );