bind method

CellBadge bind({
  1. ValueCell<Color?>? backgroundColor,
  2. ValueCell<Color?>? textColor,
  3. ValueCell<double?>? smallSize,
  4. ValueCell<double?>? largeSize,
  5. ValueCell<TextStyle?>? textStyle,
  6. ValueCell<EdgeInsetsGeometry?>? padding,
  7. ValueCell<AlignmentGeometry?>? alignment,
  8. ValueCell<Offset?>? offset,
  9. ValueCell<Widget?>? label,
  10. ValueCell<bool>? isLabelVisible,
  11. ValueCell<Widget?>? child,
})

Implementation

CellBadge bind({
  ValueCell<Color?>? backgroundColor,
  ValueCell<Color?>? textColor,
  ValueCell<double?>? smallSize,
  ValueCell<double?>? largeSize,
  ValueCell<TextStyle?>? textStyle,
  ValueCell<EdgeInsetsGeometry?>? padding,
  ValueCell<AlignmentGeometry?>? alignment,
  ValueCell<Offset?>? offset,
  ValueCell<Widget?>? label,
  ValueCell<bool>? isLabelVisible,
  ValueCell<Widget?>? child,
}) =>
    CellBadge(
      backgroundColor: backgroundColor ?? this.backgroundColor,
      textColor: textColor ?? this.textColor,
      smallSize: smallSize ?? this.smallSize,
      largeSize: largeSize ?? this.largeSize,
      textStyle: textStyle ?? this.textStyle,
      padding: padding ?? this.padding,
      alignment: alignment ?? this.alignment,
      offset: offset ?? this.offset,
      label: label ?? this.label,
      isLabelVisible: isLabelVisible ?? this.isLabelVisible,
      child: child ?? this.child,
    );