TxCellTheme constructor

const TxCellTheme({
  1. required Widget child,
  2. required TxCellThemeData data,
  3. Key? key,
})

创建一个栅格主题,该主题定义后代 TxCell 的颜色和样式参数。

Implementation

const TxCellTheme({
  required super.child,
  required this.data,
  super.key,
});