async_foreach 0.0.3 copy "async_foreach: ^0.0.3" to clipboard
async_foreach: ^0.0.3 copied to clipboard

outdated

Support for easily looping through arrays asynchrounously and beign able to await for the completion

async_foreach #

Support for easily looping through arrays asynchronously and being able to await for the completion

Getting Started #

import the library and add it to your pubspec.yaml

import 'package:async_foreach/async_foreach.dart';

Now you can use the "asyncForEach" method through the dot notation on all arrays. The function/method will await the completion of each async Function.

List<String> stuff = ['Nada','Menos','Mucho menos'];
void main() async{
  //The method takes an asynchronous function with 2 positional arguments as argument. First position is the element of the List(array) and the second the index of the element within that List
  await stuff.asyncForEach((element)async{
    print(element);
  });
}

Hecho en 🇵🇷 por Radamés J. Valentín Reyes

3
likes
0
points
3
downloads

Publisher

unverified uploader

Weekly Downloads

Support for easily looping through arrays asynchrounously and beign able to await for the completion

License

unknown (license)

Dependencies

flutter

More

Packages that depend on async_foreach