Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.

Commit db8ca3f

Browse files
committed
fmt
1 parent 23d56b9 commit db8ca3f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/src/test_utilities/annotation.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,5 @@ class Annotation implements Comparable<Annotation> {
6161

6262
extension on String? {
6363
int? toInt() => this == null ? null : int.parse(this!);
64-
String? toNullIfBlank() =>
65-
this == null || this!.trim().isEmpty ? null : this;
64+
String? toNullIfBlank() => this == null || this!.trim().isEmpty ? null : this;
6665
}

0 commit comments

Comments
 (0)