Convert DateTime to ISO 8601
use :
DateTime now = DateTime.now();
String isoDate = now.toIso8601String();
DateTime now has a toIso8601String()
method.
use :
DateTime now = DateTime.now();
String isoDate = now.toIso8601String();
DateTime now has a toIso8601String()
method.