setAudioFile method
Implementation
@override
Future<void> setAudioFile(String path) async {
try {
await methodChannel.invokeMethod<void>('setAudioFile', {
'path': path,
});
} catch (e) {
if (kDebugMode) {
print(e);
}
// rethrow;
}
}