expectBackpackNotContains function
Assert that Backpack does not contain a specific key.
Implementation
void expectBackpackNotContains(String key) {
expect(
Backpack.instance.contains(key),
isFalse,
reason: 'Expected Backpack to not contain key "$key"',
);
}