isInitialNonLoadingState function

Matcher isInitialNonLoadingState([
  1. Object? key
])

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

Implementation

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