MPTopic constructor

const MPTopic({
  1. required String code,
  2. String? title,
  3. bool single = false,
})

Initializes an MPTopic

@param code The code/id of the topic. @param title The readable title of the topic that will be displayed in the dashboard, if this is not set it will be equal to code. @param single If this topic represents a single device or a group of devices, defaults to false.

Implementation

const MPTopic({
  required this.code,
  this.title,
  this.single = false,
});