addSeconds(): Adds a specified number of seconds to a DateTime.
DateTime addSeconds(int seconds) { return add(Duration(seconds: seconds)); }