traceTree method
Implementation
Future<Children?> traceTree() async {
Element? context = PxContextAware.instance.getCurrentElement();
if (context == null) {
Logger.d('Context is not available');
return null;
}
final h = PxUtils().getScreenHeight;
final w = PxUtils().getScreenWidth;
return dumpWidgetTree(context, h, w);
}