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