update method

void update(
  1. dynamic updates(
    1. SetBuilder<E>
    )
)

Applies a function to this.

Implementation

void update(Function(SetBuilder<E>) updates) {
  updates(this);
}