Skip to content

Commit 94e3184

Browse files
authored
Mark use of deprecated type. (#106282)
1 parent 3313c69 commit 94e3184

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/flutter/test/foundation/_compute_caller_unsound_null_safety_error.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ void main() async {
1616
try {
1717
await compute(throwNull, null);
1818
} catch (e) {
19-
if (e is! NullThrownError) {
19+
if (e is! NullThrownError) { // ignore: deprecated_member_use
2020
throw Exception('compute returned bad result');
2121
}
2222
}

0 commit comments

Comments
 (0)