dart_try 0.0.1 copy "dart_try: ^0.0.1" to clipboard
dart_try: ^0.0.1 copied to clipboard

The Try control gives us the ability write safe code without focusing on try-catch blocks in the presence of exceptions.

example/dart_try_example.dart

import 'package:dart_try/dart_try.dart';

void main() {
  // execute http call that can fail
  final test = Try.of(() => getSomething()).orElseGet('TEST');
}

Future<String> getSomething() {
  return Future.value('');
}
2
likes
150
points
26
downloads

Publisher

verified publisherlinovy.de

Weekly Downloads

The Try control gives us the ability write safe code without focusing on try-catch blocks in the presence of exceptions.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

More

Packages that depend on dart_try