Workbook.withCulture constructor
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);
}
}