isReporterAvailable property

bool get isReporterAvailable

Implementation

bool get isReporterAvailable {
  try {
    final diffInfo = defaultDiffInfo;
    return ApprovalUtils.isFileExists(diffInfo.command);
  } catch (e) {
    return false;
  }
}