isInitialLoadingState function

Matcher isInitialLoadingState([
  1. Object? key
])

A matcher that matches a resource state that is loading, where the key matches the given key matcher, and value & error are null

Implementation

Matcher isInitialLoadingState([Object? key]) =>
    isLoadingStateWith(key: key, value: isNull, error: isNull);