writeTime method

String writeTime(
  1. TimeCellValue value
)

Returns the raw day-fraction string used to store value in the worksheet.

Implementation

String writeTime(TimeCellValue value) {
  return _toDayFraction(value.asDuration()).toString();
}