sheenColorTexture property
TextureSource?
get
sheenColorTexture
Sheen color texture.
Implementation
TextureSource? get sheenColorTexture => _sheenColorTexture;
set
sheenColorTexture
(TextureSource? value)
Implementation
set sheenColorTexture(TextureSource? value) {
if (identical(_sheenColorTexture, value)) return;
_sheenColorTexture = value;
_markMaterialDataDirty(variant: true);
}