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/entity_wrapper.class.dart

14 lines
270 B
Dart
Raw Normal View History

2018-11-15 19:08:47 +02:00
part of '../main.dart';
class EntityWrapper {
String displayName;
String icon;
Entity entity;
EntityWrapper({this.entity, String icon, String displayName}) {
this.icon = icon ?? entity.icon;
this.displayName = displayName ?? entity.displayName;
}
}