currentStep property

String? currentStep

Returns the name of the current step or null if no step is currently running.

Implementation

String? get currentStep => _currentStep;
void currentStep=(String? step)

Sets the name of the current running step; may be null if there is no test step currently running.

Implementation

set currentStep(String? step) {
  if (_currentStep != step) {
    _currentStep = step;
    _currentStepStreamController.add(step);
  }
}