freezed_result 1.0.3+1 freezed_result: ^1.0.3+1 copied to clipboard
A Result<Success, Failure> that feels like a Freezed union. It holds the outcome of an operation—a value of type Success, or an error of type Failure—and methods to work with it.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add freezed_result
With Flutter:
$ flutter pub add freezed_result
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
freezed_result: ^1.0.3+1
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:freezed_result/freezed_result.dart';