isFailed static method

bool isFailed(
  1. int? n
)

is isFailed

Implementation

static bool isFailed(int? n) {
  return !isSuccess(n);
}