bind method

CellBanner bind({
  1. ValueCell<Widget?>? child,
  2. ValueCell<String>? message,
  3. ValueCell<TextDirection?>? textDirection,
  4. ValueCell<BannerLocation>? location,
  5. ValueCell<TextDirection?>? layoutDirection,
  6. ValueCell<Color>? color,
  7. 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,
    );