aspect property

GPUTextureAspect get aspect

Implementation

GPUTextureAspect get aspect =>
    GPUTextureAspect.fromValue(js_util.getProperty(this, 'aspect'));
set aspect (GPUTextureAspect newValue)

Implementation

set aspect(GPUTextureAspect newValue) {
  js_util.setProperty(this, 'aspect', newValue.value);
}