Skip to content

Instantly share code, notes, and snippets.

@code-simple
Last active October 9, 2021 17:32
Show Gist options
  • Save code-simple/24ad380d6111ac16263861939e74232e to your computer and use it in GitHub Desktop.
Save code-simple/24ad380d6111ac16263861939e74232e to your computer and use it in GitHub Desktop.
Next Birthday
void main() {
nextBirthDay({required int day, required int month, required int year}) {
var now = DateTime.now();
var dob = DateTime(year,month,day);
var thisYearDob = DateTime(now.year,dob.month,dob.day);
return ('Next Birthday : ${thisYearDob.add(Duration(days:365)).toString().split(' ').first}');
}
print(nextBirthDay(day:10,month:9,year:2021));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment