isFormatSupported method
Checks if the given audio format is supported for conversion
Implementation
@override
Future<bool> isFormatSupported(String inputPath) async {
final bool result = await methodChannel.invokeMethod('isFormatSupported', {
'inputPath': inputPath,
});
return result;
}