bind method
CellRow
bind({
- ValueCell<
MainAxisAlignment> ? mainAxisAlignment, - ValueCell<
MainAxisSize> ? mainAxisSize, - ValueCell<
CrossAxisAlignment> ? crossAxisAlignment, - ValueCell<
TextDirection?> ? textDirection, - ValueCell<
VerticalDirection> ? verticalDirection, - ValueCell<
TextBaseline?> ? textBaseline, - ValueCell<
List< ? children,Widget> >
Implementation
CellRow bind({
ValueCell<MainAxisAlignment>? mainAxisAlignment,
ValueCell<MainAxisSize>? mainAxisSize,
ValueCell<CrossAxisAlignment>? crossAxisAlignment,
ValueCell<TextDirection?>? textDirection,
ValueCell<VerticalDirection>? verticalDirection,
ValueCell<TextBaseline?>? textBaseline,
ValueCell<List<Widget>>? children,
}) =>
CellRow(
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,
);