unloadEffect method
Releases a specified preloaded audio effect from the memory.
Parameter soundId
ID of the audio effect. Each audio effect has a unique ID.
Implementation
@override
Future<void> unloadEffect(int soundId) {
return _invokeMethod('unloadEffect', {'soundId': soundId});
}