TabRow constructor

const TabRow({
  1. bool enableDivider = true,
  2. double? rowDividerHeight,
  3. double rowDividerWidth = 0.5,
  4. required List<int> cellWidget,
  5. required CellItem cellItem,
  6. double? rowHeight,
  7. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  8. MainAxisSize mainAxisSize = MainAxisSize.max,
  9. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  10. VerticalDirection verticalDirection = VerticalDirection.down,
  11. TextDirection? textDirection,
  12. Color? dividerColor = Colors.red,
  13. bool fixRowHeight = false,
  14. Key? key,
})

Implementation

const TabRow(
    {this.enableDivider = true,
    this.rowDividerHeight,
    this.rowDividerWidth = 0.5,
    required this.cellWidget,
    required this.cellItem,
    this.rowHeight,
    this.mainAxisAlignment = MainAxisAlignment.start,
    this.mainAxisSize = MainAxisSize.max,
    this.crossAxisAlignment = CrossAxisAlignment.center,
    this.verticalDirection = VerticalDirection.down,
    this.textDirection,
    this.dividerColor = Colors.red,
    this.fixRowHeight = false,
    Key? key})
    : super(key: key);