maybeFind method
Optionally find the data 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
T? maybeFind(BuildContext context) {
return MultiModel.maybeFind<T>(context, key);
}