complete method

void complete()

Completes theme initialization by finalizing all rules.

Called after theme loading to perform final processing and optimization of all rules in the theme hierarchy.

Implementation

void complete() {
  //    this.rulesList.trimToSize();
  //    this.hillShadings.trimToSize();
  for (var element in rulesList) {
    element.onComplete();
  }
}