NotificationDTO constructor

const NotificationDTO({
  1. int? id,
  2. String? tag,
  3. NotificationTypeDTO? type,
  4. String? message,
  5. DateTime? timestamp,
  6. int? deviceId,
  7. String? serialNumber,
  8. String? displayName,
})

Implementation

const NotificationDTO({
  this.id,
  this.tag,
  this.type,
  this.message,
  this.timestamp,
  this.deviceId,
  this.serialNumber,
  this.displayName,
});