AFAsyncQuery<TResponse> constructor

AFAsyncQuery<TResponse>({
  1. AFID? id,
  2. AFOnResponseDelegate<TResponse>? onSuccess,
  3. AFOnErrorDelegate? onError,
  4. AFPreExecuteResponseDelegate<TResponse>? onPreExecuteResponse,
  5. int? simulatedLatencyFactor,
})

Implementation

AFAsyncQuery({
  AFID? id,
  this.onSuccess,
  this.onError,
  this.onPreExecuteResponse,
  this.simulatedLatencyFactor,
}): super(id: id) {
  conceptualStore = AFibF.g.activeConceptualStore;
}