fromInt static method

PlaybackState fromInt(
  1. int? value
)

Implementation

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