bind method

CellBaseline bind({
  1. ValueCell<double>? baseline,
  2. ValueCell<TextBaseline>? baselineType,
  3. ValueCell<Widget?>? child,
})

Implementation

CellBaseline bind({
  ValueCell<double>? baseline,
  ValueCell<TextBaseline>? baselineType,
  ValueCell<Widget?>? child,
}) =>
    CellBaseline(
      baseline: baseline ?? this.baseline,
      baselineType: baselineType ?? this.baselineType,
      child: child ?? this.child,
    );