async_foreach 0.0.2 copy "async_foreach: ^0.0.2" to clipboard
async_foreach: ^0.0.2 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() {
  //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,index)async{
    print('$index. $element');
  });
}

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

3
likes
0
pub points
79%
popularity

Publisher

unverified uploader

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