isFormatSupported method

  1. @override
Future<bool> isFormatSupported(
  1. String inputPath
)
override

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;
}