NrbCustomWidgetCell constructor

const NrbCustomWidgetCell({
  1. Key? key,
  2. required Widget child,
  3. required String exportText,
  4. double? cellWidth,
  5. double? cellHeight,
  6. AlignmentGeometry? alignment = Alignment.center,
  7. Color? backgroundColor = Colors.white,
  8. Color? textColor = Colors.black,
  9. bool isBold = false,
})

Creates a NrbCustomWidgetCell.

Implementation

const NrbCustomWidgetCell({
  super.key,
  required this.child,
  required this.exportText,
  this.cellWidth,
  this.cellHeight,
  this.alignment = Alignment.center,
  this.backgroundColor = Colors.white,
  this.textColor = Colors.black,
  this.isBold = false,
});