bindSampler property
      
      void Function(num, [WebGLSampler?])
      get
      bindSampler
      
    
    
    
Implementation
void Function(
  _i2.num, [
  _i3.WebGLSampler?,
]) get bindSampler => (
      _i2.num p0, [
      _i3.WebGLSampler? p1,
    ]) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'bindSampler',
          ),
          r'call',
          [
            this,
            p0,
            p1 ?? _i6.undefined,
          ],
        );
      
      set
      bindSampler
      (void value(num, [WebGLSampler?])) 
      
    
    
    
Implementation
set bindSampler(
    void Function(
      _i2.num, [
      _i3.WebGLSampler?,
    ]) value) {
  _i4.setProperty(
    this,
    'bindSampler',
    _i4.allowInterop(value),
  );
}