categoryOptions property

(UNTESTED)

Implementation

Future<AVAudioSessionCategoryOptions> get categoryOptions async {
  final value = (await (_channel.invokeMethod<int>('getCategoryOptions')))!;
  return AVAudioSessionCategoryOptions(value);
}