Skip to content

Commit 8ed1b4f

Browse files
author
Franco Bugnano
committed
Removed useless toString override for CustomFieldPredicate
1 parent a76575f commit 8ed1b4f

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

lib/src/predicate.dart

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,6 @@ class CustomFieldPredicate extends FieldPredicate<String> {
8282

8383
CustomFieldPredicate.of(CustomFieldPredicate other) : _exists = other._exists, super.of(other);
8484

85-
@override
86-
String toString() {
87-
if (_exists == null) {
88-
return super.toString();
89-
} else if (_exists!) {
90-
return 'exists';
91-
} else {
92-
return '!exists';
93-
}
94-
}
95-
9685
@override
9786
dynamic toJson() {
9887
if (_exists == null) {

0 commit comments

Comments
 (0)