Property constructor

Property({
  1. required String parentId,
  2. required String id,
  3. String name = "",
  4. bool settable = false,
  5. bool retained = false,
  6. String unit = "",
  7. String datatype = "string",
  8. String format = "",
})

Implementation

Property(
    {required this.parentId,
    required this.id,
    this.name = "",
    this.settable = false,
    this.retained = false,
    this.unit = "",
    this.datatype = "string",
    this.format = ""});