TableCell constructor

TableCell({
  1. Component? content,
  2. int? colSpan,
  3. int? rowSpan,
  4. Scope? scope,
  5. String? id,
  6. String? className,
  7. Map<String, dynamic>? style,
  8. Map<String, String>? attributes,
  9. String tag = 'td',
})

Implementation

TableCell({
  this.content,
  this.colSpan,
  this.rowSpan,
  this.scope,
  super.id,
  super.className,
  super.style,
  super.attributes,
  super.tag = 'td',
});