stopCoroutine method
Stops a coroutine
Implementation
void stopCoroutine(CoroutineAsync coroutine) {
final int id = coroutine.hashCode;
_runningCoroutines.remove(id);
}
Stops a coroutine
void stopCoroutine(CoroutineAsync coroutine) {
final int id = coroutine.hashCode;
_runningCoroutines.remove(id);
}