FormatException: Invalid date format
Unhandled exception:
FormatException: Invalid date format
Tue, 08 Oct 2024 14:45:01 GMT
#0 DateTime.parse (dart:core/date_time.dart:351:7)
#1 WebdavXml.toFiles.
DateTime.parse("Tue, 08 Oct 2024 14:45:01 GMT");
// create time
final cTimeElements = findElements(prop, 'creationdate');
DateTime? cTime = cTimeElements.isNotEmpty
? str2LocalTime(cTimeElements.single.text)
: null;
where is the core/date_time.dart and where to write this code:[[final cTimeElements = findElements(prop, 'creationdate'); DateTime? cTime = cTimeElements.isNotEmpty ? str2LocalTime(cTimeElements.single.text) : null; ]]?