in flutter we can get current month using this
var now = new DateTime.now(); var formatter = new DateFormat(\'MM\'); String month = formatter.format(now); <
We can use the subtract method to get past month date.
DateTime pastMonth = DateTime.now().subtract(Duration(days: 30));