isRefresh static method

bool isRefresh(
  1. dynamic result
)

Check result is refresh

Implementation

static bool isRefresh(result) {
  return result != null && result[RESULT] == REFRESH;
}