resumeEffect method Null safety
- int effectId
Resumes playing a specified audio effect file
effectId ID of a specified audio effect. Each audio effect has a unique ID.
Implementation
Future<int> resumeEffect(int effectId) async {
IntValue reply = await _api.resumeEffect(IntValue()..value = effectId);
return reply.value ?? -1;
}