FdcFormatSettings constructor

const FdcFormatSettings({
  1. String? locale,
  2. String dateFormat = _neutralDateFormat,
  3. String timeFormat = _neutralTimeFormat,
  4. String? dateTimeFormat,
  5. String decimalSeparator = _neutralDecimalSeparator,
  6. String thousandSeparator = _neutralThousandSeparator,
  7. bool showThousandSeparator = _neutralShowThousandSeparator,
})

Creates a FdcFormatSettings.

Implementation

const FdcFormatSettings({
  this.locale,
  this.dateFormat = _neutralDateFormat,
  this.timeFormat = _neutralTimeFormat,
  this.dateTimeFormat,
  this.decimalSeparator = _neutralDecimalSeparator,
  this.thousandSeparator = _neutralThousandSeparator,
  this.showThousandSeparator = _neutralShowThousandSeparator,
});