FontSettingsSetDefaultFixedFontSizeParams class
class FontSettingsSetDefaultFixedFontSizeParams extends ChromeObject {
FontSettingsSetDefaultFixedFontSizeParams({int pixelSize}) {
if (pixelSize != null) this.pixelSize = pixelSize;
}
FontSettingsSetDefaultFixedFontSizeParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
/**
* The font size in pixels.
*/
int get pixelSize => jsProxy['pixelSize'];
set pixelSize(int value) => jsProxy['pixelSize'] = value;
}
Extends
ChromeObject > FontSettingsSetDefaultFixedFontSizeParams
Constructors
new FontSettingsSetDefaultFixedFontSizeParams({int pixelSize}) #
Create a new instance of a ChromeObject, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
FontSettingsSetDefaultFixedFontSizeParams({int pixelSize}) {
if (pixelSize != null) this.pixelSize = pixelSize;
}
new FontSettingsSetDefaultFixedFontSizeParams.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
FontSettingsSetDefaultFixedFontSizeParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
int pixelSize #
The font size in pixels.
int get pixelSize => jsProxy['pixelSize'];
set pixelSize(int value) => jsProxy['pixelSize'] = value;
Methods
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();