withClause property

  1. @override
WithClauseImpl? withClause
override

Returns the with clause for the class, or null if the class does not have a with clause.

Implementation

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

Implementation

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