PlutoColumnTypeNumber constructor

PlutoColumnTypeNumber({
  1. dynamic defaultValue,
  2. required bool negative,
  3. required String format,
  4. required bool applyFormatOnInit,
  5. required bool allowFirstDot,
  6. required String? locale,
})

Implementation

PlutoColumnTypeNumber({
  this.defaultValue,
  required this.negative,
  required this.format,
  required this.applyFormatOnInit,
  required this.allowFirstDot,
  required this.locale,
})  : numberFormat = intl.NumberFormat(format, locale),
      decimalPoint = _getDecimalPoint(format);