assert$ property

void Function([bool?, Iterable?]) get assert$

Implementation

void Function([
  _i2.bool?,
  _i2.Iterable<_i2.dynamic>?,
]) get assert$ => ([
      _i2.bool? p0,
      _i2.Iterable<_i2.dynamic>? p1,
    ]) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'assert',
          ),
          r'call',
          [
            this,
            p0 ?? _i6.undefined,
            p1 ?? _i6.undefined,
          ],
        );
set assert$ (void value([bool?, Iterable?]))

Implementation

set assert$(
    void Function([
      _i2.bool?,
      _i2.Iterable<_i2.dynamic>?,
    ]) value) {
  _i4.setProperty(
    this,
    'assert',
    _i4.allowInterop(([
      _i2.bool? v0,
      a0,
      a1,
      a2,
      a3,
      a4,
      a5,
      a6,
      a7,
      a8,
      a9,
    ]) =>
        value(
          v0,
          [
            a0,
            a1,
            a2,
            a3,
            a4,
            a5,
            a6,
            a7,
            a8,
            a9,
          ],
        )),
  );
}