fluent_result 5.0.0  fluent_result: ^5.0.0 copied to clipboard
fluent_result: ^5.0.0 copied to clipboard
FluentResults is a lightweight 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_resultWith Flutter:
 $ flutter pub add fluent_resultThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
  fluent_result: ^5.0.0Alternatively, 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';