Options constructor

Options({
  1. bool? triggerDefaultQuery,
  2. bool? triggerCustomQuery,
  3. bool? stateChanges,
  4. Completer<void>? completer,
})

Implementation

Options({
  this.triggerDefaultQuery,
  bool? triggerCustomQuery,
  bool? stateChanges,
  this.completer,
}) {
  this.triggerDefaultQuery =
      triggerDefaultQuery != null ? triggerDefaultQuery : false;
  this.triggerCustomQuery =
      triggerCustomQuery != null ? triggerCustomQuery : false;
  this.stateChanges = stateChanges != null ? stateChanges : true;
}