AndroidAudioFocus.fromInt constructor

AndroidAudioFocus.fromInt(
  1. int value
)

Implementation

factory AndroidAudioFocus.fromInt(int value) {
  return values.firstWhere((e) => e.value == value);
}