UNotificationUpdateParams constructor

UNotificationUpdateParams({
  1. required String id,
  2. List<int>? addTags,
  3. List<int>? removeTags,
  4. List<int>? tags,
  5. String? detail1,
  6. String? detail2,
  7. List<String>? adminUserIds,
  8. List<String>? addAdminUserIds,
  9. List<String>? removeAdminUserIds,
})

Implementation

UNotificationUpdateParams({
  required this.id,
  this.addTags,
  this.removeTags,
  this.tags,
  this.detail1,
  this.detail2,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
});