stop method
override
Stop this Track if not stopped. Returns true if stopped, false if already stopped
Implementation
@override
Future<bool> stop() async {
final didStop = await super.stop();
if (didStop) {
// web support
audio.stopAudio(getCid());
}
return didStop;
}