textureId property
The identity of the backend texture.
Implementation
int get textureId => _textureId;
Implementation
set textureId(int value) {
assert(value != null);
if (value != _textureId) {
_textureId = value;
markNeedsPaint();
}
}