frameId property

int get frameId

0 indicates the navigation happens in the tab content window; a positive value indicates navigation in a subframe. Frame IDs are unique for a given tab and process.

Implementation

int get frameId => _wrapped.frameId;
set frameId (int v)

Implementation

set frameId(int v) {
  _wrapped.frameId = v;
}