skipWhile method
Refer to Iterable.skipWhile;
Implementation
Future<Iterable<E>> skipWhile(bool test(E e)) async {
return (await this).skipWhile(test);
}
Refer to Iterable.skipWhile;
Future<Iterable<E>> skipWhile(bool test(E e)) async {
return (await this).skipWhile(test);
}