dumpState method
Implementation
GuiComponentCollection<GuiComponent> dumpState([String innerObject = ""]) {
final res = obj.dumpState(innerObject);
if (res == null) {
throw Exception("No state found for this component");
}
return GuiComponentCollection<GuiComponent>(res);
}