Can someone share code about send data from sensor to google sheet?

switch (range) {
case 1:
  Serial.println("Raining");
  Blynk.notify("Raining");
  break;
case 2:
  Serial.println("Dry");
  Blynk.notify("Dry");
  break;
}

can you give me an example set timeout notification i didnt find anything in Blynk doc
Thanks