QueryLoggingObserver constructor

const QueryLoggingObserver({
  1. bool colors = true,
  2. bool verbose = false,
  3. bool mutationCreation = true,
  4. bool mutationReuse = true,
  5. bool queryCreation = true,
  6. bool queryDeletion = true,
  7. bool queryChange = true,
  8. bool queryError = true,
  9. bool mutationError = true,
  10. bool mutationChange = true,
})

An observer to log changes in queries and mutations.

Implementation

const QueryLoggingObserver({
  this.colors = true,
  this.verbose = false,
  this.mutationCreation = true,
  this.mutationReuse = true,
  this.queryCreation = true,
  this.queryDeletion = true,
  this.queryChange = true,
  this.queryError = true,
  this.mutationError = true,
  this.mutationChange = true,
});