writeDateTime method
Returns the raw serial-day string used to store value in the worksheet.
Implementation
String writeDateTime(DateTimeCellValue value) {
final delta = value.asDateTimeUtc().difference(_excelEpoch);
return _toDayFraction(delta).toString();
}