CollationOptions constructor

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

Implementation

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