item property

T Function() get item

Implementation

T Function() get item => () => _i3.callMethod(
      _i3.getProperty(
        this,
        'item',
      ),
      r'call',
      [this],
    );
set item (T value())

Implementation

set item(T Function() value) {
  _i3.setProperty(
    this,
    'item',
    _i3.allowInterop(value),
  );
}