forDelete static method

NotificationParams forDelete(
  1. AtKey atKey
)

Returns NotificationParams to send a delete notification.

Implementation

static NotificationParams forDelete(AtKey atKey) {
  return NotificationParams()
    .._id = Uuid().v4()
    .._atKey = atKey
    .._operation = OperationEnum.delete
    .._messageType = MessageTypeEnum.key;
}