DataTableCell constructor Null safety

DataTableCell(
  1. {required String id,
  2. String? text,
  3. Widget? child,
  4. bool showEditIcon = false,
  5. Function? onTap}
)

Implementation

DataTableCell({
  required this.id,
  this.text,
  this.child,
  this.showEditIcon = false,
  this.onTap,
});