SendNotificationRequest constructor

SendNotificationRequest({
  1. NotificationMessage? notification,
})

Implementation

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