We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88c6105 commit a1d9d6aCopy full SHA for a1d9d6a
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 5.0.0 05/10/2022
2
+
3
+* Supports new dart 3 features
4
5
## 4.0.0 - 12/21/2022
6
7
* Major release. [BREAKING]
@@ -25,7 +29,7 @@ Help us figure out which one to remove in the near future.
25
29
* **SWAP**:<br>
26
30
This new operand will be useful when you need to swap `Success` and `Error`.
27
31
```dart
28
-Result<String, int> result =...;
32
+Result<String, int> result = getResult();
33
Result<int, String> newResult = result.swap();
34
```
35
0 commit comments