nidula 2.0.1
nidula: ^2.0.1 copied to clipboard
A Dart library for Rust-like Option/Result types, providing a structured approach to error handling.
example/main.dart
import 'option_and_then_example.dart' as option_and_then_example;
import 'result_and_then_example.dart' as result_and_then_example;
import 'to_json_and_from_json.dart' as to_json_and_from_json;
void main() {
option_and_then_example.main();
result_and_then_example.main();
to_json_and_from_json.main();
}
copied to clipboard