canBack property

bool canBack

過去に戻れるかどうか

Implementation

bool get canBack {
  if (historyRenderItems.isEmpty) {
    throw Exception('backgroundImage is not found.');
  }
  return currentHistoryIndex < historyRenderItems.length - 1;
}