getProgramInfoLog property

String? Function(WebGLProgram) get getProgramInfoLog

Implementation

_i2.String? Function(_i3.WebGLProgram) get getProgramInfoLog =>
    (_i3.WebGLProgram p0) => _i4.callMethod(
          _i4.getProperty(
            this,
            'getProgramInfoLog',
          ),
          r'call',
          [
            this,
            p0,
          ],
        );
set getProgramInfoLog (String? value(WebGLProgram))

Implementation

set getProgramInfoLog(_i2.String? Function(_i3.WebGLProgram) value) {
  _i4.setProperty(
    this,
    'getProgramInfoLog',
    _i4.allowInterop((p0) => () => value(p0) ?? _i6.undefined),
  );
}