TableSection constructor

TableSection({
  1. String? id,
  2. String? className,
  3. Map<String, dynamic>? style,
  4. Map<String, String>? attributes,
  5. String tag = "div",
})

Implementation

TableSection({
  super.id,
  super.className,
  super.style,
  super.attributes,
  super.tag,
});