encode method

List<int>? encode()

Encodes the workbook as .xlsx bytes.

Implementation

List<int>? encode() {
  ExcelWriter writer = ExcelWriter._(this, parser);
  return writer._save();
}