Skip to content

Commit

Permalink
Ignore lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Sep 18, 2023
1 parent c5e1ba5 commit f234c66
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tool/bindings_generator/util.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ extension JSArrayExtension on JSArray {
extension JSStringHelpers on JSString? {
// TODO(joshualitt): Clean this up after updating JS types.
// String? get toDartString => this.isUndefinedOrNull ? null : this!.toDart;
// ignore: prefer_null_aware_operators
String? get toDartString => this == null ? null : this!.toDart;
}

Expand Down

0 comments on commit f234c66

Please sign in to comment.