srcFactor property

GPUBlendFactor get srcFactor

Implementation

GPUBlendFactor get srcFactor =>
    GPUBlendFactor.fromValue(js_util.getProperty(this, 'srcFactor'));
set srcFactor (GPUBlendFactor newValue)

Implementation

set srcFactor(GPUBlendFactor newValue) {
  js_util.setProperty(this, 'srcFactor', newValue.value);
}