apply method

String apply(
  1. String s
)

Applies all ranges to the given string.

Implementation

String apply(String s) {
  return styleRanges(s, _ranges);
}