Home
last modified time | relevance | path

Searched refs:suppliedTime (Results 1 – 1 of 1) sorted by relevance

/expo/android/expoview/src/main/java/host/exp/exponent/notifications/
H A DNotificationHelper.kt579 when (val suppliedTime = options["time"]) { in scheduleLocalNotification() variable
580 is Number -> time = suppliedTime.toLong() - System.currentTimeMillis() in scheduleLocalNotification()
584 time = format.parse(suppliedTime as String?).time - System.currentTimeMillis() in scheduleLocalNotification()
586 else -> throw InvalidArgumentException("Invalid time provided: $suppliedTime") in scheduleLocalNotification()