stop method
Implementation
Future<void> stop() async {
if (_playerIsCreated == false) {
TTFLogger.e(
_logTag, 'stop: player not created, please await createPlayer first');
return;
}
await engineInstanceMethodChannel.invokeMethod('stop');
}