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).

This value is optional and defaults to kMinInteractiveDimension if not specified.

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;