NotificationV2 constructor

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

Implementation

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