withClause property

  1. @override
WithClauseImpl? withClause
override

Return the with clause for the enumeration, or null if the enumeration does not have a with clause.

Implementation

@override
WithClauseImpl? get withClause => _withClause;
void withClause=(WithClauseImpl? withClause)

Implementation

set withClause(WithClauseImpl? withClause) {
  _withClause = _becomeParentOf(withClause);
}