8000 ⬆️ Bump lints from 5.1.1 to 6.0.0 in /chopper_built_value by dependabot[bot] · Pull Request #662 · lejard-h/chopper · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

⬆️ Bump lints from 5.1.1 to 6.0.0 in /chopper_built_value #662

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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chopper_built_value/lib/chopper_built_value.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class BuiltValueConverter implements Converter, ErrorConverter {
return BuiltList<InnerType>(deserialized.toList(growable: false));
}

BodyType? deserialize<BodyType, InnerType>(entity) {
BodyType? deserialize<BodyType, InnerType>(dynamic entity) {
if (entity is BodyType) return entity;
if (entity is Iterable) {
return _deserializeListOf<InnerType>(entity) as BodyType;
Expand Down
2 changes: 1 addition & 1 deletion chopper_built_value/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dev_dependencies:
build_runner: ^2.4.9
build_test: ^2.2.2
built_value_generator: ^8.9.2
lints: ">=4.0.0 <6.0.0"
lints: ">=4.0.0 <7.0.0"

topics:
- codegen
Expand Down
0