isDebugEnabled property

bool get isDebugEnabled

Implementation

static bool get isDebugEnabled {
  try {
    return Percept.instance.isDebugMode;
  } catch (e) {
    log("Percept Debug Mode check failed: $e");
    return false;
  }
}