thenElement property

  1. @override
CollectionElementImpl thenElement
override

Return the statement that is executed if the condition evaluates to true.

Implementation

@override
CollectionElementImpl get thenElement => _thenElement;
void thenElement=(CollectionElementImpl element)

Implementation

set thenElement(CollectionElementImpl element) {
  _thenElement = _becomeParentOf(element);
}