All I can see in the documentation is Datetime.now()
but it returns the Timespan, I need just the date.
If you want only the date without the timestamp. You can take the help of intl package.
main() {
var now = new DateTime.now();
var formatter = new DateFormat('yyyy-MM-dd');
String formattedDate = formatter.format(now);
print(formattedDate); // 2016-01-25
}
This requires the intl package:
dependencies:
intl: ^0.16.1
And finally import:
import 'package:intl/intl.dart';