dumpState method

GuiComponentCollection<GuiComponent> dumpState([
  1. String innerObject = ""
])

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);
}