getScheduleDate static method

TZDateTime getScheduleDate(
  1. LocalNotificationModel model
)

Implementation

static TZDateTime getScheduleDate(LocalNotificationModel model) {
  final TZDateTime scheduledDate = TZDateTime(
    local,
    model.date!.year,
    model.date!.month,
    model.date!.day,
    model.date!.hour,
    model.date!.minute,
  );
  return scheduledDate;
}