mergedCellsStyle property

Map<String, ExtendStyle> get mergedCellsStyle

Represents the merged cell collection in the workbok.

Implementation

Map<String, ExtendStyle> get mergedCellsStyle {
  _mergedCellsStyles ??= <String, ExtendStyle>{};
  return _mergedCellsStyles!;
}
set mergedCellsStyle (Map<String, ExtendStyle> value)

Implementation

set mergedCellsStyle(Map<String, ExtendStyle> value) {
  _mergedCellsStyles = value;
}