StateMessageSystem constructor

StateMessageSystem({
  1. required String id,
  2. required String name,
  3. required String version,
  4. String? brand,
  5. String? resolutionRatio,
})

Implementation

StateMessageSystem({
  required this.id,
  required this.name,
  required this.version,
  this.brand,
  this.resolutionRatio,
});