value property

dynamic get value

Implementation

dynamic get value => _value;
  1. @Input()
set value (dynamic val)

Data model to render.

Provide your own label in the content of the chip, or provide an ItemRenderer.

Implementation

@Input()
set value(dynamic val) {
  _value = val;
  _genLabel();
}