getInitialDateTime method
Returns time that was scheduled if user already created a notification
Implementation
DateTime getInitialDateTime() {
if (parent.notificationModel != null)
return DateTime.parse(parent.notificationModel.date1);
else
return DateTime.now();
}