Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate @nullable annotation #1309

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions built_value/lib/built_value.dart
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,10 @@ class BuiltValue {
this.defaultSerialize = true});
}

/// Nullable annotation for nullable Built Value fields in legacy code.
/// Annotation that was used to mark nullable Built Value fields.
///
/// In null safe code, instead make the field type nullable with `?`.
/// Now it does nothing or causes an error whenever used.
@Deprecated('Add `?` to the field type to make it nullable instead')
const String nullable = 'nullable';

/// Optionally, annotate a Built Value field with this to specify settings.
Expand Down