CellItem constructor

CellItem({
  1. AlignmentGeometry alignment = Alignment.center,
  2. Color background = Colors.transparent,
  3. EdgeInsetsGeometry padding = const EdgeInsets.all(0),
  4. required BuildCell buildCell,
})

Implementation

CellItem(
    {this.alignment = Alignment.center,
    this.background = Colors.transparent,
    this.padding = const EdgeInsets.all(0),
    required this.buildCell});