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