textureId property

int get textureId

Implementation

int get textureId {
  if (_channel == null) {
    return -1;
  }
  var id = _channel!.name.split("@").last;
  return int.parse(id);
}