FormatsCollection constructor

FormatsCollection(
  1. Workbook workbook
)

Initializes new instance and sets its application and parent objects.

Implementation

FormatsCollection(Workbook workbook) {
  _parent = workbook;
  _rawFormats = <int, _Format>{};
  _hashFormatStrings = <String, _Format>{};
}