PrivateNotificationMessage constructor
PrivateNotificationMessage({
- String? uid,
- NodeAddress? senderNodeAddress,
- PrivateNotificationPayload? privateNotificationPayload,
Implementation
factory PrivateNotificationMessage({
$core.String? uid,
NodeAddress? senderNodeAddress,
PrivateNotificationPayload? privateNotificationPayload,
}) {
final $result = create();
if (uid != null) {
$result.uid = uid;
}
if (senderNodeAddress != null) {
$result.senderNodeAddress = senderNodeAddress;
}
if (privateNotificationPayload != null) {
$result.privateNotificationPayload = privateNotificationPayload;
}
return $result;
}