Notification constructor

Notification({
  1. NotificationType? msg,
  2. String? collection,
  3. String? serverId,
  4. List<String>? subs,
  5. List<String>? methods,
  6. String? id,
  7. NotificationFields? fields,
  8. NotificationResult? result,
})

Implementation

Notification({
  this.msg,
  this.collection,
  this.serverId,
  this.subs,
  this.methods,
  this.id,
  this.fields,
  this.result,
});