applyAll method

void applyAll(
  1. Iterable<AsserestProperty> properites
)

Perform multiple apply with given properties.

Implementation

void applyAll(Iterable<AsserestProperty> properites) {
  properites.forEach(apply);
}