rootContentContainer property

Container? rootContentContainer

Implementation

Container? get rootContentContainer {
  var ancestor = this;
  while (ancestor.parent != null) {
    ancestor = ancestor.parent!;
  }
  return asOrNull<Container>(ancestor);
}