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