Device constructor

Device({
  1. DeviceLinks? links,
  2. DateTime? createdAt,
  3. String? id,
  4. String? type,
  5. DateTime? updatedAt,
})

Returns a new Device instance.

Implementation

Device({
  this.links,
  this.createdAt,
  this.id,
  this.type,
  this.updatedAt,
});