directives method

Prop<V> directives(
  1. List<Directive<V>> directives
)

Returns a new property with the given directives merged with existing ones.

Implementation

Prop<V> directives(List<Directive<V>> directives) {
  return mergeProp(Prop.directives(directives));
}