canEditHeightOfEachRow method

bool canEditHeightOfEachRow(
  1. int index,
  2. double? value
)

Implementation

bool canEditHeightOfEachRow(int index, double? value) {
  if (value != _state.mapIndexToHeightOfEachRow[index]) {
    _state.mapIndexToHeightOfEachRow[index] = value;
    return true;
  }
  return false;
}