notifyState method

void notifyState([
  1. ControlArgs? state
])

Implementation

void notifyState([ControlArgs? state]) {
  if (state != null) {
    args.combine(state);
  }

  _notifyState(state != null);
}