CellFractionalTranslation constructor

const CellFractionalTranslation({
  1. Key? key,
  2. required ValueCell<Offset> translation,
  3. ValueCell<bool> transformHitTests = const ValueCell.value(true),
  4. ValueCell<Widget?>? child,
})

Implementation

const CellFractionalTranslation({
  super.key,
  required this.translation,
  this.transformHitTests = const ValueCell.value(true),
  this.child,
});