BaseFlagRequest constructor

BaseFlagRequest({
  1. String? apiKey,
  2. EvaluationContext? context,
  3. bool? enableOfflineMode,
  4. bool invalidateCache = false,
  5. dynamic onBeforeRequest()?,
  6. dynamic onSuccess(
    1. NetworkResponse
    )?,
  7. dynamic onError(
    1. DioException,
    2. dynamic
    )?,
})

Implementation

BaseFlagRequest({
  this.apiKey,
  this.context,
  this.enableOfflineMode,
  this.invalidateCache = false,
  this.onBeforeRequest,
  this.onSuccess,
  this.onError,
});