tryHideOrShow method

void tryHideOrShow(
  1. int separatorIndex
)

Implementation

void tryHideOrShow(int separatorIndex) {
  final result = _model.tryHideOrShow(separatorIndex);

  if (result) {
    eventStream.add(this);
    _model.callOnResized();
  }
}