CellAspectRatio constructor

const CellAspectRatio({
  1. Key? key,
  2. required ValueCell<double> aspectRatio,
  3. ValueCell<Widget?>? child,
})

Implementation

const CellAspectRatio({
  super.key,
  required this.aspectRatio,
  this.child,
});