XlsxDecoder constructor

XlsxDecoder(
  1. Archive archive, {
  2. bool update = false,
})

Implementation

XlsxDecoder(Archive archive, {bool update = false}) {
  _archive = archive;
  _update = update;
  if (_update == true) {
    _archiveFiles = <String, ArchiveFile>{};
    _sheets = <String, XmlElement>{};
    _xmlFiles = <String, XmlDocument>{};
  }
  _tables = <String, SpreadsheetTable>{};
  _parseRelations();
  _parseStyles();
  _parseSharedStrings();
  _parseContent();
}