hasError property

bool hasError
inherited

Has output error

Implementation

bool get hasError =>
    processException?.message != null ||
    processResult?.stderr.runtimeType == String &&
        (processResult?.stderr as String).isNotEmpty;