how are you ?
my backend just accept date and time in this format 2019-03-24 11:00:00
and i use in my app calendar widget to get the date and it print the date
You can use intl package
Here is an example:
import 'package:intl/intl.dart'; main() { var now = new DateTime.now(); var dateFormat = new DateFormat('yyyy-MM-dd HH:mm:ss'); String formattedDate = dateFormat.format(now); print(formattedDate); // 2019-04-28 09:02:29 }