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