I am planninig to send firebase notification but in specific date-time like 20-12-2020 10:30 from my ASP.net web api is that possible I am using firebase admin library and sending notification is work completely my code for sending is like the next
var message = new Message()
{
Data = new Dictionary<string, string>()
{
["client"] = client.Name + "," + client.Mobile,
["source"] = order.Source,
["click_action"] = "FLUTTER_NOTIFICATION_CLICK"
},
Notification = new Notification
{
Title = "new Order",
Body = client.Name + "," + client.Mobile + "," + order.Source + "," + order.Destination + "," + order.Id,
},
Token = driver.Token,
};
string response = await messaging.SendAsync(message);
Console.Write(response);