Project structure change in progress
This commit is contained in:
10
lib/entities/switch/switch_entity.class.dart
Normal file
10
lib/entities/switch/switch_entity.class.dart
Normal file
@ -0,0 +1,10 @@
|
||||
part of '../../main.dart';
|
||||
|
||||
class SwitchEntity extends Entity {
|
||||
SwitchEntity(Map rawData, String webHost) : super(rawData, webHost);
|
||||
|
||||
@override
|
||||
Widget _buildStatePart(BuildContext context) {
|
||||
return SwitchStateWidget();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user