FreedomTableBodyCell constructor

FreedomTableBodyCell({
  1. int colspan = 1,
  2. int rowspan = 1,
  3. required Widget child,
  4. dynamic data,
})

Implementation

FreedomTableBodyCell({
  this.colspan = 1,
  this.rowspan = 1,
  required this.child,
  this.data,
});