QuiesceObjector constructor

QuiesceObjector(
  1. bool isActive(
      ),
    1. {required Component parent,
    2. String name = 'quiesceObjector',
    3. Future<void> timeout(
        )?,
      1. Future<void> dropDelay(
          )?}
        )

        Constructs a new QuiesceObjector based on isActive.

        If timeout is provided, then if there is no activity before it completes, then it will flag an error.

        If dropDelay is provided, then there will be a delay on dropping an objection until it completes.

        Implementation

        QuiesceObjector(
          this.isActive, {
          required Component parent,
          String name = 'quiesceObjector',
          this.timeout,
          this.dropDelay,
        }) : super(name, parent);