forEachAsync method

Future<void> forEachAsync(
  1. Future<void> func(
    1. V,
    2. K
    )
)

Implementation

Future<void> forEachAsync(Future<void> Function(V, K) func) async {
	for (MapEntry<K, V> kvp in this.entries) {
		await func(kvp.value, kvp.key);
	}
}