toggleState method

dynamic toggleState(
  1. UIGridViewState? state
)

Implementation

toggleState(UIGridViewState? state) {
  if (this.state == state) return;
  this.state = state;
}