bind method

CellDefaultTextStyle bind({
  1. ValueCell<TextStyle>? style,
  2. ValueCell<TextAlign?>? textAlign,
  3. ValueCell<bool>? softWrap,
  4. ValueCell<TextOverflow>? overflow,
  5. ValueCell<int?>? maxLines,
  6. ValueCell<TextWidthBasis>? textWidthBasis,
  7. ValueCell<TextHeightBehavior?>? textHeightBehavior,
  8. ValueCell<Widget>? child,
})

Implementation

CellDefaultTextStyle bind({
  ValueCell<TextStyle>? style,
  ValueCell<TextAlign?>? textAlign,
  ValueCell<bool>? softWrap,
  ValueCell<TextOverflow>? overflow,
  ValueCell<int?>? maxLines,
  ValueCell<TextWidthBasis>? textWidthBasis,
  ValueCell<TextHeightBehavior?>? textHeightBehavior,
  ValueCell<Widget>? child,
}) =>
    CellDefaultTextStyle(
      style: style ?? this.style,
      textAlign: textAlign ?? this.textAlign,
      softWrap: softWrap ?? this.softWrap,
      overflow: overflow ?? this.overflow,
      maxLines: maxLines ?? this.maxLines,
      textWidthBasis: textWidthBasis ?? this.textWidthBasis,
      textHeightBehavior: textHeightBehavior ?? this.textHeightBehavior,
      child: child ?? this.child,
    );