IOSWKWindowFeatures class

An iOS-specific class that specifies optional attributes for the containing window when a new web view is requested. Use WindowFeatures instead.

Annotations

Constructors

IOSWKWindowFeatures({bool? allowsResizing, double? height, bool? menuBarVisibility, bool? statusBarVisibility, bool? toolbarsVisibility, double? width, double? x, double? y})

Properties

allowsResizing bool?
A Boolean value indicating whether the containing window should be resizable, or null if resizability is not specified.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
height double?
A Double value specifying the height of the containing window, or null if the height is not specified.
getter/setter pair
A Boolean value indicating whether the menu bar should be visible, or null if menu bar visibility is not specified.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
statusBarVisibility bool?
A Boolean value indicating whether the status bar should be visible, or null if status bar visibility is not specified.
getter/setter pair
toolbarsVisibility bool?
A Boolean value indicating whether toolbars should be visible, or null if toolbars visibility is not specified.
getter/setter pair
width double?
A Double value specifying the width of the containing window, or null if the width is not specified.
getter/setter pair
x double?
A Double value specifying the x-coordinate of the containing window, or null if the x-coordinate is not specified.
getter/setter pair
y double?
A Double value specifying the y-coordinate of the containing window, or null if the y-coordinate is not specified.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts instance to a map.
toMap() Map<String, dynamic>
Converts instance to a map.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromMap(Map<String, dynamic>? map) IOSWKWindowFeatures?
Gets a possible IOSWKWindowFeatures instance from a Map value.