JJDialogCell constructor
const
JJDialogCell({
- Key? key,
- required JJDialogType type,
- required JJDialogEntity entity,
- EdgeInsets? padding,
- TextAlign? textAlign,
- TextStyle? textStyle,
- TextStyle? selectedTextStyle,
- required double cellHeight,
- required double cellWidth,
- BoxDecoration? cellDecoration,
- BoxDecoration? cellSelectedDecoration,
- void onTap(
- 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);