maybeFindProperty 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.contextThe build context.- key The data key.
Implementation
ModelProperty<T>? maybeFindProperty(BuildContext context) {
return MultiModel.maybeFindProperty<T>(context, key);
}