MIoTSpecType constructor

const MIoTSpecType({
  1. String namespace = 'miot-spec-v2',
  2. required MIoTSpecTypeKind type,
  3. required String name,
  4. required int? value,
  5. String? product,
  6. int? version,
  7. int? id,
})

Implementation

const MIoTSpecType({
  this.namespace = 'miot-spec-v2',
  required this.type,
  required this.name,
  required this.value,
  this.product,
  this.version,
  this.id,
});