async_foreach 0.0.5+4 copy "async_foreach: ^0.0.5+4" to clipboard
async_foreach: ^0.0.5+4 copied to clipboard

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{
    //Async operations go here
    print(element);
  });
}

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

3
likes
110
pub points
78%
popularity

Publisher

unverified uploader

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

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on async_foreach