handleZoomChange method

void handleZoomChange()

Implementation

void handleZoomChange() {
  emit(state.copyWith(
    gridPreMin: state.gridPreMin == 1 ? 3 : 1,
  ));
}