bindBufferBase property

void Function(num, num, [WebGLBuffer?]) bindBufferBase

Implementation

void Function(
  _i2.num,
  _i2.num, [
  _i3.WebGLBuffer?,
]) get bindBufferBase => (
      _i2.num p0,
      _i2.num p1, [
      _i3.WebGLBuffer? p2,
    ]) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'bindBufferBase',
          ),
          r'call',
          [
            this,
            p0,
            p1,
            p2 ?? _i6.undefined,
          ],
        );
void bindBufferBase=(void value(num, num, [WebGLBuffer?]))

Implementation

set bindBufferBase(
    void Function(
      _i2.num,
      _i2.num, [
      _i3.WebGLBuffer?,
    ]) value) {
  _i4.setProperty(
    this,
    'bindBufferBase',
    _i4.allowInterop(value),
  );
}