NumPlaceholder constructor

NumPlaceholder({
  1. required String id,
  2. required String format,
  3. String? customPattern,
  4. int? decimalDigits,
  5. String? symbol,
  6. String? description,
  7. String? example,
  8. String? context,
})

Implementation

NumPlaceholder({
  required this.id,
  required this.format,
  this.customPattern,
  this.decimalDigits,
  this.symbol,
  this.description,
  this.example,
  this.context,
});