dataRowHeight property

  1. @Deprecated('Migrate to use dataRowMinHeight and dataRowMaxHeight instead. ' 'This feature was deprecated after v3.7.0-5.0.pre.')
double? dataRowHeight

The height of each row (excluding the row that contains column headings).

If null, DataTableThemeData.dataRowHeight is used. This value defaults to kMinInteractiveDimension to adhere to the Material Design specifications.

Implementation

@Deprecated(
  'Migrate to use dataRowMinHeight and dataRowMaxHeight instead. '
  'This feature was deprecated after v3.7.0-5.0.pre.',
)
double? get dataRowHeight => dataRowMinHeight == dataRowMaxHeight ? dataRowMinHeight : null;