evaluationReasons method Null safety

LDConfigBuilder evaluationReasons(
  1. bool evaluationReasons
)

Configure whether the SDK will request evaluation reasons to be included in flag data from the service.

This will allow the additional information included in LDEvaluationDetail to be populated when using the variation detail methods such as LDClient.boolVariationDetail.

Implementation

LDConfigBuilder evaluationReasons(bool evaluationReasons) {
  this._evaluationReasons = evaluationReasons;
  return this;
}