closeAllOpenCell method

void closeAllOpenCell()

You can call this method to close all opening cell without passing controller into cell

你可以不把controller传入cell就可以直接调用这个方法 用于关闭所有打开的cell

Implementation

void closeAllOpenCell() {
  //Send a CellFingerOpenEvent with UniqueKey,so all opening cell don't have this key
  //so all of opening cell will close
  SwipeActionStore.getInstance()
      .bus
      .fire(CellFingerOpenEvent(key: UniqueKey()));
}