FlagdeckBatchRequestData constructor

FlagdeckBatchRequestData({
  1. required List<String> flagKeys,
  2. String? apiKey,
  3. EvaluationContext? context,
  4. bool? enableOfflineMode,
  5. bool invalidateCache = false,
  6. dynamic onBeforeRequest()?,
  7. dynamic onSuccess(
    1. NetworkResponse
    )?,
  8. dynamic onError(
    1. DioException,
    2. dynamic
    )?,
})

Implementation

FlagdeckBatchRequestData({
  required this.flagKeys,
  super.apiKey,
  super.context,
  super.enableOfflineMode,
  super.invalidateCache,
  super.onBeforeRequest,
  super.onSuccess,
  super.onError,
});