async_foreach

Creator: coderz1093

Last updated:

Add to Cart

Description:

async foreach

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';
copied to clipboard
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);
});
}
copied to clipboard
Hecho en 🇵🇷 por Radamés J. Valentín Reyes

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.