void main()

in example/example.dart [7:16]


void main() {
  final date = DateTime.utc(2014, 9, 9, 9, 9, 9);
  print(date); // 2014-09-09 09:09:09.000Z

  final httpDateFormatted = formatHttpDate(date);
  print(httpDateFormatted); // Tue, 09 Sep 2014 09:09:09 GMT

  final nowParsed = parseHttpDate(httpDateFormatted);
  print(nowParsed); // 2014-09-09 09:09:09.000Z
}