AFPeriodicQuery constructor

AFPeriodicQuery(
  1. Duration delay, {
  2. bool executeImmediately = false,
  3. AFID? id,
  4. AFOnResponseDelegate<AFUnused>? onSuccess,
  5. bool keepGoing = true,
})

Implementation

AFPeriodicQuery(this.delay, {
  this.executeImmediately = false,
  AFID? id,
  AFOnResponseDelegate<AFUnused>? onSuccess,
  this.keepGoing = true,
}): super(id: id, onSuccess: onSuccess);