items property

List<T> items

Items to pick from. This can be read and updated by the extension.

Implementation

_i2.List<T> get items => (_i5.getProperty(
      this,
      'items',
    ) as _i2.List)
        .cast();
void items=(List<T> value)

Implementation

set items(_i2.List<T> value) {
  _i5.setProperty(
    this,
    'items',
    value,
  );
}