contains method Null safety
- String name
override
Checks if collection contains a control by a given name
.
Returns true if collection contains the control, otherwise returns false.
Implementation
@override
bool contains(String name) {
return _controls.containsKey(name);
}