ZuOptions constructor

const ZuOptions({
  1. bool includeAD = false,
  2. String negativePrefix = "okubi",
  3. CurrencyInfo currencyInfo = CurrencyInfo.zarZu,
  4. bool currency = false,
  5. Format? format,
  6. DecimalSeparator? decimalSeparator = DecimalSeparator.period,
  7. bool round = false,
})

Creates Zulu-specific options.

Implementation

const ZuOptions({
  this.includeAD = false,
  this.negativePrefix = "okubi", // Using native term as default
  this.currencyInfo = CurrencyInfo.zarZu,
  super.currency = false,
  super.format, // Inherited: special format context (e.g., Format.year)
  super.decimalSeparator = DecimalSeparator
      .period, // Default word: "iphoyinti" or "ukhefana" for comma
  super.round = false, // Inherited: round the number
});