calculateCellAspectRatio method

double calculateCellAspectRatio(
  1. double height
)

Implementation

double calculateCellAspectRatio(double height) {
  final _cellHeight = height / 6;
  return _cellWidth / _cellHeight;
}