includes property

bool Function(T, [num?]) includes

Implementation

_i2.bool Function(
  T, [
  _i2.num?,
]) get includes => (
      T p0, [
      _i2.num? p1,
    ]) =>
        _i6.callMethod(
          _i6.getProperty(
            this,
            'includes',
          ),
          r'call',
          [
            this,
            p0,
            p1 ?? _i5.undefined,
          ],
        );
void includes=(bool value(T, [num?]))

Implementation

set includes(
    _i2.bool Function(
      T, [
      _i2.num?,
    ]) value) {
  _i6.setProperty(
    this,
    'includes',
    _i6.allowInterop(value),
  );
}