DateTime _makeDateTime()

in lib/src/http_date.dart [149:158]


DateTime _makeDateTime(int year, int month, int day, DateTime time) {
  final dateTime =
      DateTime.utc(year, month, day, time.hour, time.minute, time.second);

  // If [day] was too large, it will cause [month] to overflow.
  if (dateTime.month != month) {
    throw FormatException("invalid day '$day' for month '$month'.");
  }
  return dateTime;
}