textureId property

int textureId

The identity of the backend texture.

Implementation

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

Implementation

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