RumDevice constructor

RumDevice({
  1. String? architecture,
  2. String? brand,
  3. String? model,
  4. String? name,
  5. required RumDeviceType type,
})

Implementation

RumDevice({
  this.architecture,
  this.brand,
  this.model,
  this.name,
  required this.type,
});