add method

void add(
  1. T value
)

Adds a new value to the radio state.

Implementation

void add(T value) {
  _controller.add(value);
}