pending<T> function
Creates a pending AsyncSnapshot (equivalent to Result.pending)
Example:
final result = pending<int>();
print(result.isPending()); // true
Implementation
AsyncSnapshot<T> pending<T>() => AsyncSnapshot<T>.waiting();