getRetries method

dynamic getRetries(
  1. String operationName
)

Implementation

getRetries(String operationName) {
  switch (operationName) {
    case 'INIT_WATCH':
      return initWatch;
    case 'REBUILD_WATCH':
      return rebuildWatch;
    case 'CHECK_LAST':
      return checkLast;
    default:
      return 0;
  }
}