toggleBasedOnIndex method

void toggleBasedOnIndex(
  1. int index
)

Implementation

void toggleBasedOnIndex(int index) {
  state.elementAt(index).isExpanded = !state.elementAt(index).isExpanded;
  emit(state);
}