isFirstStepQuestion property

bool get isFirstStepQuestion

Returns true if the current question within the step is the first one.

Implementation

bool get isFirstStepQuestion {
  assert(_currentQuestionIndex >= 0, '🚩 Question index should not be negative');
  return _currentQuestionIndex == 0;
}