createAudioEffect method

Future<int> createAudioEffect(
  1. String path,
  2. int effectId
)

Implementation

Future<int> createAudioEffect(String path, int effectId) async {
  Map<String, dynamic> arguments = {
    'path': path,
    'id': effectId,
  };
  int code = await _channel.invokeMethod('createAudioEffect', arguments) ?? -1;
  return code;
}