This repository has been archived on 2023-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
ha_client/lib/entity_class/switch_entity.class.dart

10 lines
231 B
Dart
Raw Normal View History

2018-10-27 14:27:41 +03:00
part of '../main.dart';
class SwitchEntity extends Entity {
2019-03-19 23:07:40 +02:00
SwitchEntity(Map rawData, String webHost) : super(rawData, webHost);
2018-10-27 14:27:41 +03:00
@override
Widget _buildStatePart(BuildContext context) {
return SwitchStateWidget();
}
}