cancelPendingSend method
Implementation
void cancelPendingSend(String threadPath) {
final waits = _pendingSendWaits.values.where((wait) => wait.threadPath == threadPath).toList();
for (final wait in waits) {
wait.cancel();
}
}
void cancelPendingSend(String threadPath) {
final waits = _pendingSendWaits.values.where((wait) => wait.threadPath == threadPath).toList();
for (final wait in waits) {
wait.cancel();
}
}