printElementData method
Implementation
void printElementData({int level = 0}) {
if (level == 0) {
debugPrint("--------------------");
}
debugPrint(
"\nElementData- id:$id, type:$type, $rect $opacity $isSensitive $doNotRecordWireframe",
);
if (children != null) {
for (final child in children!) {
child.printElementData(level: level + 1);
}
}
}