frameType property

FrameType? frameType

The type of the frame, if this request is for a frame.

Implementation

FrameType? get frameType => _wrapped.frameType?.let(FrameType.fromJS);
void frameType=(FrameType? v)

Implementation

set frameType(FrameType? v) {
  _wrapped.frameType = v?.toJS;
}