isNotYetSeller method

bool isNotYetSeller([
  1. int? status
])

Implementation

bool isNotYetSeller([int? status]) {
  status ??= sellerStatus;
  return status != SELLER_STATUS_WAIT_PASSPORT &&
      status != SELLER_STATUS_WAIT_SELFIE &&
      status != SELLER_STATUS_WAIT_REQUEST &&
      status != SELLER_STATUS_WAIT_APPROVE &&
      status != SELLER_STATUS_IS_SELLER &&
      status != SELLER_STATUS_HAS_QUIT_TMP &&
      status != SELLER_STATUS_HAS_QUIT_FOREVER &&
      status != SELLER_STATUS_IS_REJECTED;
}