fallthrough static method

LDEvaluationReason fallthrough({
  1. bool? inExperiment,
})

Returns an LDEvaluationReason with the kind LDKind.fallthrough.

Implementation

static LDEvaluationReason fallthrough({bool? inExperiment}) {
  if (inExperiment == true) {
    return _fallthroughExperimentInstance;
  }
  return _fallthroughInstance;
}