bind method

CellAspectRatio bind({
  1. ValueCell<double>? aspectRatio,
  2. ValueCell<Widget?>? child,
})

Implementation

CellAspectRatio bind({
  ValueCell<double>? aspectRatio,
  ValueCell<Widget?>? child,
}) =>
    CellAspectRatio(
      aspectRatio: aspectRatio ?? this.aspectRatio,
      child: child ?? this.child,
    );