isSuccess property

bool isSuccess

Implementation

bool get isSuccess => networkOptions.responseIsSuccess != null
    ? networkOptions.responseIsSuccess!(this)
    : (isStatusCodeSuccess(statusCode) && data != null);