routeAudioTo static method

Future<bool?> routeAudioTo({
  1. required String routeType,
})

Used as a routeAudioTo class for Mirrorfly used to route the Audio in the call via bluetooth, speaker, receiver.. returns the bool value

Implementation

static Future<bool?> routeAudioTo({required String routeType}) async {
  return FlyChatFlutterPlatform.instance.routeAudioTo(routeType: routeType);
}