Skip to content

Commit

Permalink
Fix typing error in feed reader.
Browse files Browse the repository at this point in the history
  • Loading branch information
renggli committed Jul 3, 2023
1 parent e15a710 commit aff636d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/feeds.dart
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ class ReadCommand extends RssCommand {
stdout.writeln('$title ($link)');
}
}
}, onError: (error) {
stderr.writeln(error.toString());
}, onError: (dynamic error) {
stderr.writeln(error);
}).asFuture<void>();
}

Expand Down

0 comments on commit aff636d

Please sign in to comment.