PowerWidget constructor
PowerWidget(
- PowerTraitProvider _powerTraitProvider, {
- Color iconColor = WidgetStyleConstants.deviceDetailIconColorActive,
- Color textColor = WidgetStyleConstants.darkTextColor,
- double iconSize = 100.0,
- Key? key,
Implementation
PowerWidget(this._powerTraitProvider,
{Color iconColor = WidgetStyleConstants.deviceDetailIconColorActive,
Color textColor = WidgetStyleConstants.darkTextColor,
double iconSize = 100.0,
Key? key})
: super(key: key) {
this._iconColor = iconColor;
this._textColor = textColor;
this._iconSize = iconSize;
}