refresh method

void refresh(
  1. int groupId,
  2. int indexId
)

页面刷新,跳转到指定的 index groupId 第几组图片 indexId 组内的第几张

Implementation

void refresh(int groupId, int indexId) {
  this.groupId = groupId;
  this.indexId = indexId;
  notifyListeners();
}