CustomTableRow constructor

const CustomTableRow({
  1. Key? key,
  2. required Map<String, CustomTableColumn> columns,
  3. Color? backgroundColor,
  4. Color? textColor,
  5. BoxBorder? border,
  6. double? height,
  7. EdgeInsets? padding = const EdgeInsets.fromLTRB(16, 4, 16, 4),
  8. TextStyle? textStyle,
  9. Map itemRow = const {},
  10. Function? onTap,
  11. bool disabled = false,
})

Implementation

const CustomTableRow({
  super.key,
  required this.columns,
  this.backgroundColor,
  this.textColor,
  this.border,
  this.height,
  this.padding = const EdgeInsets.fromLTRB(16, 4, 16, 4),
  this.textStyle,
  this.itemRow = const {},
  this.onTap,
  this.disabled = false
});