makeHidden method

void makeHidden(
  1. List<String> attributes
)
inherited

Make attributes hidden.

Implementation

void makeHidden(List<String> attributes) {
  _runtimeHidden.addAll(attributes);
  _runtimeVisible.removeAll(attributes);
}