Skip to content

Commit

Permalink
remove final keyword (#3090)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sameerkash authored Mar 22, 2021
1 parent 8d64122 commit ca885fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/null-safety/understanding-null-safety/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1291,7 +1291,7 @@ T` cast, *not* the `!` operator:
```dart
// Using null safety:
class Box<T> {
final T? object;
T? object;
Box.empty();
Box.full(this.object);
Expand Down

0 comments on commit ca885fc

Please sign in to comment.