IndexInfo constructor

IndexInfo({
  1. String? category,
  2. String? code,
  3. Color? color,
  4. String? displayName,
  5. String? indexDescription,
  6. int? value,
})

Implementation

IndexInfo({
  this.category,
  this.code,
  this.color,
  this.displayName,
  this.indexDescription,
  this.value,
});