bind method

CellColumn bind({
  1. ValueCell<MainAxisAlignment>? mainAxisAlignment,
  2. ValueCell<MainAxisSize>? mainAxisSize,
  3. ValueCell<CrossAxisAlignment>? crossAxisAlignment,
  4. ValueCell<TextDirection?>? textDirection,
  5. ValueCell<VerticalDirection>? verticalDirection,
  6. ValueCell<TextBaseline?>? textBaseline,
  7. ValueCell<List<Widget>>? children,
})

Implementation

CellColumn bind({
  ValueCell<MainAxisAlignment>? mainAxisAlignment,
  ValueCell<MainAxisSize>? mainAxisSize,
  ValueCell<CrossAxisAlignment>? crossAxisAlignment,
  ValueCell<TextDirection?>? textDirection,
  ValueCell<VerticalDirection>? verticalDirection,
  ValueCell<TextBaseline?>? textBaseline,
  ValueCell<List<Widget>>? children,
}) =>
    CellColumn(
      mainAxisAlignment: mainAxisAlignment ?? this.mainAxisAlignment,
      mainAxisSize: mainAxisSize ?? this.mainAxisSize,
      crossAxisAlignment: crossAxisAlignment ?? this.crossAxisAlignment,
      textDirection: textDirection ?? this.textDirection,
      verticalDirection: verticalDirection ?? this.verticalDirection,
      textBaseline: textBaseline ?? this.textBaseline,
      children: children ?? this.children,
    );