TxDataRow constructor

const TxDataRow({
  1. required List<Widget> cells,
  2. Decoration? decoration,
  3. double? spacing,
  4. EdgeInsetsGeometry? padding,
  5. Key? key,
})

TxDataGrid 的行创建配置。

cells 参数不得为空。

Implementation

const TxDataRow({
  required this.cells,
  this.decoration,
  this.spacing,
  this.padding,
  super.key,
});