Fixed some tests & bugs in queryObserver

This commit is contained in:
Kingkor Roy Tirtho
2022-05-01 13:19:51 +06:00
parent fe558c0cb7
commit b5a73f8cae
2 changed files with 28 additions and 27 deletions
@@ -29,6 +29,11 @@ class CancelledError {
bool? revert;
bool? silent;
CancelledError({this.revert, this.silent});
@override
String toString() {
return "CancelledError(revert: $revert, silent: $silent)";
}
}
bool isCancelledError(value) {