BodySettings constructor

BodySettings({
  1. Color titleBGColor = Colors.grey,
  2. Color backgroundColor = Colors.grey,
  3. double height = 60,
  4. double? radius,
})

customizable body-cell height

Implementation

BodySettings(
    {this.titleBGColor = Colors.grey,
    this.backgroundColor = Colors.grey,
    this.height = 60,
    this.radius});