fromInt static method
Implementation
static PlaybackState fromInt(int? value) {
return PlaybackState.values.firstWhere(
(e) => e.value == value,
orElse: () => PlaybackState.none,
);
}
static PlaybackState fromInt(int? value) {
return PlaybackState.values.firstWhere(
(e) => e.value == value,
orElse: () => PlaybackState.none,
);
}