isDeleted static method

bool isDeleted(
  1. dynamic result
)

Check result is deleted

Implementation

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