frameId property

int get frameId

The ID of the frame for this context, or -1 if this context is not hosted in a frame.

Implementation

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

Implementation

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