Skip to content

Instantly share code, notes, and snippets.

@CaiJingLong
Created October 16, 2019 07:58
Show Gist options
  • Save CaiJingLong/bcc30e22475f39d0d1a2bdf084d2f3fd to your computer and use it in GitHub Desktop.
Save CaiJingLong/bcc30e22475f39d0d1a2bdf084d2f3fd to your computer and use it in GitHub Desktop.
day of month
int dayOfMonth(int year, int month) {
return DateTime(year, month + 1, 1).subtract(Duration(days: 1)).day;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment