ILibNumFmtOptions constructor

ILibNumFmtOptions({
  1. String? locale,
  2. String? type,
  3. String? currency,
  4. int? maxFractionDigits,
  5. int? minFractionDigits,
  6. int? significantDigits,
  7. String? style,
  8. String? roundingMode,
  9. bool? useNative,
})

Implementation

ILibNumFmtOptions({
  this.locale,
  this.type,
  this.currency,
  this.maxFractionDigits,
  this.minFractionDigits,
  this.significantDigits,
  this.style,
  this.roundingMode,
  this.useNative,
});