testOnlyIsInWorkflowTest property

bool get testOnlyIsInWorkflowTest

Implementation

bool get testOnlyIsInWorkflowTest {
  final activePrototypeId = testOnlyActivePrototypeId;
  if(activePrototypeId == null) {
    return false;
  }

  final test = AFibF.g.findScreenTestById(activePrototypeId);
  if(test == null) {
    return false;
  }

  return test is AFWorkflowStatePrototype;

}