fluent_result 8.4.0 fluent_result: ^8.4.0 copied to clipboard
FluentResults is a Dart library developed to solve a common problem. It returns an object indicating success or failure of an operation instead of throwing/using exceptions.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add fluent_result
With Flutter:
$ flutter pub add fluent_result
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
fluent_result: ^8.4.0
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:fluent_result/fluent_result.dart';