getParentFactory abstract method
PodFactory?
getParentFactory()
inherited
Retrieves the parent factory in the hierarchy, if any.
Usage Example:
final parent = factory.getParentFactory();
if (parent != null) {
print('This factory has a parent factory');
}
@return The parent PodFactory or null if this is the root factory
Implementation
PodFactory? getParentFactory();