apply method

void apply(
  1. List<Option> options
)

Apply the given options to this Options instance.

Implementation

void apply(List<Option> options) {
  for (var option in options) {
    option(this);
  }
}