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/entities/switch/switch_entity.class.dart

10 lines
234 B
Dart
Raw Normal View History

2019-08-24 21:22:32 +03:00
part of '../../main.dart';
2018-10-27 14:27:41 +03:00
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();
}
}