IotWidget constructor

IotWidget({
  1. required String id,
  2. String title = "",
  3. String icon = "",
  4. int minWidth = 0,
  5. int minHeight = 0,
  6. List<IotWidgetElement> elements = const <IotWidgetElement>[],
  7. String tags = "",
  8. List<String> compatibleModels = const <String>[],
  9. String vendor = "",
})

Implementation

IotWidget(
    {required this.id,
    this.title = "",
    this.icon = "",
    this.minWidth = 0,
    this.minHeight = 0,
    this.elements = const <IotWidgetElement>[],
    this.tags = "",
    this.compatibleModels = const <String>[],
    this.vendor = ""});