NotificationDto constructor

NotificationDto({
  1. int? relation,
  2. int? notificationId,
  3. String? notificationName,
  4. String? url,
  5. String? content,
  6. String? remark,
})

Implementation

NotificationDto({
  this.relation,
  this.notificationId,
  this.notificationName,
  this.url,
  this.content,
  this.remark,
});