getScheduleDate static method
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;
}