FontSettingsSetMinimumFontSizeParams class
class FontSettingsSetMinimumFontSizeParams extends ChromeObject { FontSettingsSetMinimumFontSizeParams({int pixelSize}) { if (pixelSize != null) this.pixelSize = pixelSize; } FontSettingsSetMinimumFontSizeParams.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 > FontSettingsSetMinimumFontSizeParams
Constructors
new FontSettingsSetMinimumFontSizeParams({int pixelSize}) #
Create a new instance of a ChromeObject
, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
FontSettingsSetMinimumFontSizeParams({int pixelSize}) { if (pixelSize != null) this.pixelSize = pixelSize; }
new FontSettingsSetMinimumFontSizeParams.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject
, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
FontSettingsSetMinimumFontSizeParams.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();