AdeptDataTableCellTheme constructor

AdeptDataTableCellTheme({
  1. Color? color,
  2. double? width,
  3. Alignment alignment = Alignment.center,
  4. TextStyle? textStyle,
})

Constructor allows you to define styling and value properties.

Implementation

AdeptDataTableCellTheme(
    {this.color,
    this.width,
    this.alignment = Alignment.center,
    TextStyle? textStyle})
    : textStyle = textStyle ??
          stylesWorkSans(
              fontSize: 12,
              color: Colors.grey.shade800,
              fontWeight: FontWeight.w600);