findDash method

DashPage? findDash()

Implementation

DashPage? findDash() {
  MobileDashPage? mp = findAncestorWidgetOfExactType();
  if (mp != null) return mp;
  DesktopDashPage? ddp = findAncestorWidgetOfExactType();
  if (ddp != null) return ddp;
  ContentDashPage? cp = findAncestorWidgetOfExactType();
  return cp;
}