booleanProperty method
Retrieve a boolean property from the event with the given name.
Implementation
@override
CustomBooleanProperty? booleanProperty(String name) {
final property = properties[name];
if (property is CustomBooleanProperty) {
return property;
}
return null;
}