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