ThermostatWidget constructor

ThermostatWidget(
  1. ThermostatProvider _thermostatProvider, {
  2. Color textColor = WidgetStyleConstants.darkTextColor,
  3. Key? key,
})

Implementation

ThermostatWidget(this._thermostatProvider,
    {Color textColor = WidgetStyleConstants.darkTextColor, Key? key})
    : super(key: key) {
  this._textColor = textColor;
}