Skip to content

Commit

Permalink
Fix line length.
Browse files Browse the repository at this point in the history
  • Loading branch information
eyebrowsoffire committed Apr 23, 2024
1 parent 1b325f0 commit 512cc74
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion json_serializable/lib/src/lambda_result.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ class LambdaResult {
final String lambda;
final DartType? asContent;

String get _fullExpression => asContent != null ? _cast(expression, asContent!) : expression;
String get _fullExpression =>
asContent != null ? _cast(expression, asContent!) : expression;

LambdaResult(this.expression, this.lambda, {this.asContent});

Expand Down

0 comments on commit 512cc74

Please sign in to comment.