CellGroup constructor

CellGroup({
  1. Key? key,
  2. String? title,
  3. List<Widget>? children,
  4. bool border = true,
  5. BoxDecoration? decoration,
})

Implementation

CellGroup(
    {Key? key, this.title, this.children, this.border: true, this.decoration})
    : super(key: key);