AFAsyncListenerQuery<TResponse> constructor

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

Implementation

AFAsyncListenerQuery({
  AFID? id,
  AFPreExecuteResponseDelegate<TResponse>? onPreExecuteResponse,
  AFOnResponseDelegate<TResponse>? onSuccess,
  AFOnErrorDelegate? onError
}): super(id: id, onSuccess: onSuccess, onPreExecuteResponse: onPreExecuteResponse);