Skip to content

Commit

Permalink
fix: Unhandled exception Null check operator used on a null value (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksleo authored Jan 7, 2024
1 parent 15b6cd1 commit bacaf33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/flutter_app_builder/lib/src/commands/flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class FlutterVersion {
engineRevision: json['engineRevision'] as String?,
dartSdkVersion: json['dartSdkVersion'] as String?,
devToolsVersion: json['devToolsVersion'] as String?,
flutterVersion: json['flutterVersion'] as String?,
flutterVersion: json['flutterVersion'] as String? ?? (json['frameworkVersion'] as String?),
);
}

Expand Down

0 comments on commit bacaf33

Please sign in to comment.