consumerTabId property

int? get consumerTabId

Optional tab id of the tab which will later invoke getUserMedia() to consume the stream. If not specified then the resulting stream can be used only by the calling extension. The stream can only be used by frames in the given tab whose security origin matches the consumber tab's origin. The tab's origin must be a secure origin, e.g. HTTPS.

Implementation

int? get consumerTabId => _wrapped.consumerTabId;
set consumerTabId (int? v)

Implementation

set consumerTabId(int? v) {
  _wrapped.consumerTabId = v;
}