Skip to content

Commit

Permalink
style: fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
DevNico committed Aug 15, 2022
1 parent 753c5a7 commit f7b3489
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions packages/freezed/lib/src/freezed_generator.dart
Expand Up @@ -274,10 +274,6 @@ Read here: https://github.com/rrousselGit/freezed/blob/master/packages/freezed/C
final isNullable =
parameter.isNullable || anyMatchingPropertyIsNullable;

if (parameter.isNullable != isNullable) {
print(parameter.name);
}

return parameter.copyWith(
isFinal: parameter.isFinal || anyMatchingPropertyIsFinal,
isNullable: isNullable,
Expand Down
Expand Up @@ -68,7 +68,7 @@ class SharedParam with _$SharedParam {
class SharedParamNullable with _$SharedParamNullable {
const factory SharedParamNullable(String a, String b, int c) =
SharedParamNullable0;
const factory SharedParamNullable.named(String? a, String b, int d) =
const factory SharedParamNullable.named(String? a, String b, int d) =
SharedParamNullable1;
}

Expand Down

0 comments on commit f7b3489

Please sign in to comment.