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