in flutter we can get current month using this
var now = new DateTime.now(); var formatter = new DateFormat(\'MM\'); String month = formatter.format(now); <
In addition to Günter Zöchbauer Answer
var now = new DateTime.now(); String g = ('${now.year}/ ${now.month}/ ${now.day}'); print(g);