Collation constructor

Collation({
  1. required String locale,
  2. required bool caseLevel,
  3. required String caseFirst,
  4. required int strength,
  5. required bool numericOrdering,
  6. required String alternate,
  7. required String maxVariable,
  8. required bool normalization,
  9. required bool backwards,
})

Implementation

Collation({
  required this.locale,
  required this.caseLevel,
  required this.caseFirst,
  required this.strength,
  required this.numericOrdering,
  required this.alternate,
  required this.maxVariable,
  required this.normalization,
  required this.backwards,
});