stopEffect method

  1. @override
Future<void> stopEffect(
  1. int soundId
)

Stops playing a specified audio effect.

Note

Parameter soundId ID of the specified audio effect. Each audio effect has a unique ID.

Implementation

@override
Future<void> stopEffect(int soundId) {
  return _invokeMethod('stopEffect', {'soundId': soundId});
}