CollationOptions constructor

const CollationOptions({
  1. LocaleMatcher localeMatcher = LocaleMatcher.bestfit,
  2. Usage usage = Usage.sort,
  3. Sensitivity? sensitivity,
  4. bool ignorePunctuation = false,
  5. bool numeric = false,
  6. CaseFirst caseFirst = CaseFirst.localeDependent,
  7. String? collation,
})

Implementation

const CollationOptions({
  this.localeMatcher = LocaleMatcher.bestfit,
  this.usage = Usage.sort,
  this.sensitivity,
  this.ignorePunctuation = false,
  this.numeric = false,
  this.caseFirst = CaseFirst.localeDependent,
  this.collation,
});