HeaderSettings constructor

HeaderSettings({
  1. Color bottomColor = Colors.grey,
  2. Color topColor = Colors.blue,
  3. String locale = 'en_US',
  4. String? label,
  5. double cellHeight = 50,
})

Implementation

HeaderSettings(
    {this.bottomColor = Colors.grey,
    this.topColor = Colors.blue,
    this.locale = 'en_US',
    this.label,
    this.cellHeight = 50});