Skip to content

Commit

Permalink
Remove nullable for lineLength0
Browse files Browse the repository at this point in the history
  • Loading branch information
lcdsmao committed Feb 6, 2021
1 parent ba57a33 commit cd2335c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _internal/lib/src/pubspec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class FlutterGen {
final int lineLength1;

@deprecated
@JsonKey(name: 'lineLength', required: true, nullable: true)
@JsonKey(name: 'lineLength', required: true)
final int lineLength0;

@JsonKey(name: 'assets', required: true)
Expand Down
2 changes: 1 addition & 1 deletion lib/src/settings/pubspec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class FlutterGen {
final int lineLength1;

@deprecated
@JsonKey(name: 'lineLength', required: true, nullable: true)
@JsonKey(name: 'lineLength', required: true)
final int lineLength0;

@JsonKey(name: 'assets', required: true)
Expand Down

0 comments on commit cd2335c

Please sign in to comment.