Skip to content

Commit

Permalink
issue-167. fixed after comments
Browse files Browse the repository at this point in the history
  • Loading branch information
shaark committed Dec 4, 2024
1 parent 03122d6 commit b8b0a5d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ class AvoidReturningWidgetsParameters {
factory AvoidReturningWidgetsParameters.fromJson(Map<String, dynamic> json) {
return AvoidReturningWidgetsParameters(
exclude: ExcludedIdentifiersListParameter.fromJson(
excludeList:
json[ExcludedIdentifiersListParameter.excludeParameterName] as Iterable? ?? [],
excludeList: json[ExcludedIdentifiersListParameter.excludeParameterName]
as Iterable? ??
[],
),
);
}
Expand Down

0 comments on commit b8b0a5d

Please sign in to comment.