isKeyErrorState function

Matcher isKeyErrorState(
  1. Object error
)

A matcher that matches a resource state after a key error, where the key is null, there is no value, and the error matches the given error matcher

Implementation

Matcher isKeyErrorState(Object error) =>
    isNonLoadingStateWith(key: isNull, value: isNull, error: error);