Skip to content

Commit

Permalink
Fixed the analyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
vanlooverenkoen committed Jul 1, 2021
1 parent a07cbd8 commit e3d90e9
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ linter:
- always_require_non_null_named_parameters
- annotate_overrides
- avoid_annotating_with_dynamic
- avoid_as
- avoid_bool_literals_in_conditional_expressions
- avoid_catching_errors
- avoid_double_and_int_checks
Expand Down
1 change: 0 additions & 1 deletion example/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ linter:
- always_require_non_null_named_parameters
- annotate_overrides
- avoid_annotating_with_dynamic
- avoid_as
- avoid_bool_literals_in_conditional_expressions
- avoid_catching_errors
- avoid_double_and_int_checks
Expand Down
2 changes: 1 addition & 1 deletion example/lib/model/user/testing.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Testing {
@JsonKey(name: 'beneficiaryIBAN')
final String? beneficiaryIBAN;
@JsonKey(name: 'dynamicField')
final dynamic? dynamicField;
final dynamic dynamicField;
@JsonKey(name: 'duration')
final Duration? duration;
@JsonKey(
Expand Down

0 comments on commit e3d90e9

Please sign in to comment.