currentBlock property

SurveyBlock? get currentBlock

Implementation

SurveyBlock? get currentBlock {
  final node = currentNode;
  return node == null ? null : survey.blockFor(node);
}