StateMessage constructor

StateMessage({
  1. required String event,
  2. required String state,
  3. required String deviceType,
  4. StateMessageSystem? system,
  5. StateMessageHardware? hardware,
  6. List<StateMessageProperty>? properties,
})

Implementation

StateMessage({
  required this.event,
  required this.state,
  required this.deviceType,
  this.system,
  this.hardware,
  this.properties,
});