getCurrentChildren method

List<String> getCurrentChildren(
  1. String targetViewId
)

Get the current child view IDs of a target container This allows portal content to be appended rather than replaced

Implementation

List<String> getCurrentChildren(String targetViewId) {
  return _vdom.getCurrentChildren(targetViewId);
}