WithClauseImpl constructor

WithClauseImpl({
  1. required Token withKeyword,
  2. required List<NamedTypeImpl> mixinTypes,
})

Initialize a newly created with clause.

Implementation

WithClauseImpl({
  required this.withKeyword,
  required List<NamedTypeImpl> mixinTypes,
}) {
  _mixinTypes._initialize(this, mixinTypes);
}