type property
CreateType?
get
type
Specifies what type of browser window to create.
Implementation
CreateType? get type => _wrapped.type?.let(CreateType.fromJS);
set
type
(CreateType? v)
Implementation
set type(CreateType? v) {
_wrapped.type = v?.toJS;
}