JJDialogCell constructor

const JJDialogCell({
  1. Key? key,
  2. required JJDialogType type,
  3. required JJDialogEntity entity,
  4. EdgeInsets? padding,
  5. TextAlign? textAlign,
  6. TextStyle? textStyle,
  7. TextStyle? selectedTextStyle,
  8. required double cellHeight,
  9. required double cellWidth,
  10. BoxDecoration? cellDecoration,
  11. BoxDecoration? cellSelectedDecoration,
  12. void onTap(
    1. int index
    )?,
})

Implementation

const JJDialogCell({
  Key? key,
  required this.type,
  required this.entity,
  //this.listTile,
  this.padding,
  this.textAlign,
  this.textStyle,
  this.selectedTextStyle,
  required this.cellHeight,
  required this.cellWidth,
  this.cellDecoration,
  this.cellSelectedDecoration,
  this.onTap,

}) : super(key: key);