TestControllerState constructor

TestControllerState({
  1. String? currentStep,
  2. String? currentTest,
  3. bool passing = false,
  4. double progress = 0.0,
  5. bool runningSuite = false,
  6. bool runningTest = false,
})

Implementation

TestControllerState({
  String? currentStep,
  String? currentTest,
  bool passing = false,
  double progress = 0.0,
  bool runningSuite = false,
  bool runningTest = false,
})  : _currentStep = currentStep,
      _currentTest = currentTest,
      _passing = passing,
      _progress = progress,
      _runningSuite = runningSuite,
      _runningTest = runningTest;