containsProperty method
Returns true
if this property source contains the given name
.
Should check if the underlying source holds a value for the property.
Implementation
@override
bool containsProperty(String name) {
if (nonOptionArgsPropertyName == name) {
return getNonOptionArgs().isNotEmpty;
}
return containsOption(name);
}