elapsed 1.0.0 copy "elapsed: ^1.0.0" to clipboard
elapsed: ^1.0.0 copied to clipboard

outdated

A helper method to get time elapsed for any Future or asychronous function in a single line of code.

example/elapsed_example.dart

import 'package:elapsed/elapsed.dart';
import 'package:http/http.dart' as http;

void main() async {
  var data = await elapsed(getSum(3, 8)); // Basic example.
  print(data.result); // prints "11" .
  print('${data.inSeconds} seconds'); // prints "2.5 seconds" .

  var voidExample = await elapsed(divide(10, 2)); // void example. no return type.
  print('${voidExample.inSeconds} seconds'); // prints "3.0 seconds" .

  var response = await getSampleREST('https://jsonplaceholder.typicode.com/posts/1');
  print(response.body); // prints JSON data from the api.
}

Future<void> divide(int a, int b) async {
  await Future.delayed(Duration(milliseconds: 3000));
  print(a / b);
}

Future<int> getSum(int a, int b) async {
  await Future.delayed(Duration(milliseconds: 2500));
  return a + b;
}

Future<http.Response> getSampleREST(String url) async {
  var data = await elapsed(http.get(url)); // HTTP REST example.
  print('${data.inSeconds} seconds'); // seconds printed depends on internet speed.
  print(data.result.statusCode); // prints "200" .
  return data.result;
}
5
likes
0
pub points
17%
popularity

Publisher

verified publisherxamantra.dev

A helper method to get time elapsed for any Future or asychronous function in a single line of code.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on elapsed