setNext static method
Notifications for the target ID will not be displayed until the nextDisplayAt
passed in the argument.
Implementation
static Future<LongTimeNoNotification> setNext({required String id, required DateTime nextDisplayAt}) {
return LongTimeNoNotificationDelegate.set(
id: id,
currentDateTime: DateTime.now(),
nextDisplayAt: nextDisplayAt,
repository: _repository,
);
}