SendNotificationRequest constructor
SendNotificationRequest({
- NotificationMessage? notification,
Implementation
factory SendNotificationRequest({
NotificationMessage? notification,
}) {
final $result = create();
if (notification != null) {
$result.notification = notification;
}
return $result;
}