bind method

CellFractionalTranslation bind({
  1. ValueCell<Offset>? translation,
  2. ValueCell<bool>? transformHitTests,
  3. ValueCell<Widget?>? child,
})

Implementation

CellFractionalTranslation bind({
  ValueCell<Offset>? translation,
  ValueCell<bool>? transformHitTests,
  ValueCell<Widget?>? child,
}) =>
    CellFractionalTranslation(
      translation: translation ?? this.translation,
      transformHitTests: transformHitTests ?? this.transformHitTests,
      child: child ?? this.child,
    );