A matcher that verifies an Option is Some containing value.
value
expect(Some(42), isSomeWith(42));
Matcher isSomeWith(Object? value) => _IsSomeWith(value);