Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid passing a nullable value to Completer<nn-type>.complete
This is cleanup work required to start enforcing this with static analysis, as per dart-lang/sdk#53253. Real quick this issue is that this code is unsafe: ```dart void f(Completer<int> c, int? i) { Future<int>.value(i); // Ouch! c.complete(i); // Ouch! } ```
- Loading branch information