isEncoderSupported method
Checks if the given encoder is supported on the current platform.
Implementation
Future<bool> isEncoderSupported(AudioEncoder encoder) {
return _safeCall(() {
return _platform.isEncoderSupported(_recorderId, encoder);
});
}