getQuery property

WebGLQuery? Function(num, num) getQuery

Implementation

_i3.WebGLQuery? Function(
  _i2.num,
  _i2.num,
) get getQuery => (
      _i2.num p0,
      _i2.num p1,
    ) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'getQuery',
          ),
          r'call',
          [
            this,
            p0,
            p1,
          ],
        );
void getQuery=(WebGLQuery? value(num, num))

Implementation

set getQuery(
    _i3.WebGLQuery? Function(
      _i2.num,
      _i2.num,
    ) value) {
  _i4.setProperty(
    this,
    'getQuery',
    _i4.allowInterop((
      p0,
      p1,
    ) =>
        () =>
            value(
              p0,
              p1,
            ) ??
            _i6.undefined),
  );
}