Highlights
- Arctic Code Vault Contributor
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign upPinned
1,197 contributions in the last year
Activity overview
Contribution activity
November 2020
Created 33 commits in 11 repositories
Created 2 repositories
Created a pull request in google/quiver-dart that received 4 comments
Deprecate Optional
With the introduction of non-null by default in Dart SDK 2.12, existing users should migrate to non-nullable types. This type will be removed in Qu…
Opened 23 other pull requests in 5 repositories
google/quiver-dart
14
merged
1
open
- Eliminate dependency on package:meta
- Delete async/iteration library
- Deprecate forEachAsync, reduceAsync
- Allow null args to lists/maps/setsEqual
- Revert Optional<T extends Object> to Optional<T>
- Version 3.0.0: enables null-safety checks
- Re-enable dartfmt post null-safety migration
- Remove remaining null-safety opt-out comments
- Migrate collection/treeset to non-null by default
- Migrate async/metronome to non-null by default
- Migrate async/stream_router to non-null by default
- Migrate async/stream_buffer to non-null by default
- Migrate async/iteration to non-null by default
- Migrate async/future_stream to non-null by default
- Migrate countdown_timer to non-null by default
cbracken/rules_dart
5
merged
dart-lang/coverage
1
merged
flutter/flutter
1
merged
flutter/engine
1
merged
Reviewed 15 pull requests in 5 repositories
flutter/engine 9 pull requests
- Add initial settings message to Windows embedding
- Rename padding->viewPadding to match framework naming conventions
- Made tools/gn error out if it can't find goma
- [goma] Use depot_tools vended goma when it is present
- Opt in fixtures to nullsafety
- Reland "Do not involve external_view_embedder in submit frame process if threads are not merged. #22275"
- Ignore several import_of_legacy_library_into_null_safe
- Roll dart e182eac158cf..9bc7d4604277
- Roll the path package in web_ui and web_test_utils to match the version used by the framework
cbracken/rules_dart 2 pull requests
flutter/flutter 2 pull requests
dart-lang/dart-vim-plugin 1 pull request
google/quiver-dart 1 pull request
Created an issue in google/quiver-dart that received 4 comments
Optional<T> should be Optional<T extends Object>
Optional is intended as a substitute for non-nullable values. Ideally, it should have a generic type of T extends Object in order to prevent non-se…