bind method
CellBanner
bind({
- ValueCell<
Widget?> ? child, - ValueCell<
String> ? message, - ValueCell<
TextDirection?> ? textDirection, - ValueCell<
BannerLocation> ? location, - ValueCell<
TextDirection?> ? layoutDirection, - ValueCell<
Color> ? color, - ValueCell<
TextStyle> ? textStyle,
Implementation
CellBanner bind({
ValueCell<Widget?>? child,
ValueCell<String>? message,
ValueCell<TextDirection?>? textDirection,
ValueCell<BannerLocation>? location,
ValueCell<TextDirection?>? layoutDirection,
ValueCell<Color>? color,
ValueCell<TextStyle>? textStyle,
}) =>
CellBanner(
child: child ?? this.child,
message: message ?? this.message,
textDirection: textDirection ?? this.textDirection,
location: location ?? this.location,
layoutDirection: layoutDirection ?? this.layoutDirection,
color: color ?? this.color,
textStyle: textStyle ?? this.textStyle,
);