Workbook.withCulture constructor

Workbook.withCulture(
  1. String culture, [
  2. String? currency,
  3. int? count
])

Creates an new instances of the Workbook with currency.

Implementation

Workbook.withCulture(String culture, [String? currency, int? count]) {
  if (count != null) {
    _initializeWorkbook(culture, currency, count);
  } else {
    _initializeWorkbook(culture, currency, 1);
  }
}