Skip to content

Commit 2316867

Browse files
author
Mikael Wills
committed
Fixed function argument type error
1 parent 88505a3 commit 2316867

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/ua.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ class UA extends EventManager {
319319
int num_sessions = _sessions.length;
320320

321321
// Run _terminate_ on every Session.
322-
_sessions.keys.toList().forEach((String? key, _) {
322+
_sessions.keys.toList().forEach((String? key) {
323323
if (_sessions.containsKey(key)) {
324324
logger.d('closing session $key');
325325
try {

0 commit comments

Comments
 (0)