ShouldSkip<T> typedef

ShouldSkip<T> = bool Function(T pastState, T currentState)

This function takes pastState and currentState

Return true if the build should be skipped, otherwise false

Implementation

typedef ShouldSkip<T> = bool Function(T pastState, T currentState);