textureId property

int textureId

The identity of the backend texture.

Implementation

int get textureId => _textureId;
void textureId=(int value)

Implementation

set textureId(int value) {
  if (value != _textureId) {
    _textureId = value;
    markNeedsPaint();
  }
}