disposeSynth method
Implementation
@override
Future<void> disposeSynth(String synthId) async {
final ffiPlatform = _resolvePlatformOrThrow();
if (ffiPlatform != null) {
return ffiPlatform.disposeSynth(synthId);
}
await methodChannel.invokeMethod<void>('disposeSynth', <String, Object?>{
'synthId': synthId,
});
}