BsDataColumn constructor

BsDataColumn({
  1. Key? key,
  2. double? width,
  3. double height = 20.0,
  4. AlignmentGeometry? alignment,
  5. EdgeInsetsGeometry padding = const EdgeInsets.fromLTRB(12.0, 15.0, 12.0, 15.0),
  6. TextStyle? textStyle,
  7. BoxBorder? border,
  8. bool orderable = true,
  9. bool searchable = true,
  10. String searchValue = '',
  11. String searchRegex = 'false',
  12. String? columnName,
  13. String? columnData,
  14. BsOrderColumn orderState = const BsOrderColumn(),
  15. required Widget label,
})

Implementation

BsDataColumn(
    {Key? key,
    this.width,
    this.height = 20.0,
    this.alignment,
    this.padding = const EdgeInsets.fromLTRB(12.0, 15.0, 12.0, 15.0),
    this.textStyle,
    this.border,
    this.orderable = true,
    this.searchable = true,
    this.searchValue = '',
    this.searchRegex = 'false',
    this.columnName,
    this.columnData,
    this.orderState = const BsOrderColumn(),
    required this.label})
    : super(key: key);