bind method
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,
);