maybeFindProperty<T> method
Optionally find the property of the given type from the context. Returns null if the data is not found.
TThe type of the data.- context The build context.
keyThe data key.
Implementation
ModelProperty<T>? maybeFindProperty<T>(Symbol key) {
return Model.maybeFindProperty<T>(this, key);
}