copyWith method

Implementation

StreamMessageRepliesStyle copyWith({
  StreamMessageLayoutProperty<TextStyle?>? labelTextStyle,
  StreamMessageLayoutProperty<Color?>? labelColor,
  StreamMessageLayoutProperty<double?>? spacing,
  StreamMessageLayoutProperty<EdgeInsetsGeometry?>? padding,
  StreamMessageLayoutProperty<Color?>? connectorColor,
  StreamMessageLayoutProperty<double?>? connectorStrokeWidth,
  StreamMessageLayoutClip? clipBehavior,
}) {
  final _this = (this as StreamMessageRepliesStyle);

  return StreamMessageRepliesStyle(
    labelTextStyle: labelTextStyle ?? _this.labelTextStyle,
    labelColor: labelColor ?? _this.labelColor,
    spacing: spacing ?? _this.spacing,
    padding: padding ?? _this.padding,
    connectorColor: connectorColor ?? _this.connectorColor,
    connectorStrokeWidth: connectorStrokeWidth ?? _this.connectorStrokeWidth,
    clipBehavior: clipBehavior ?? _this.clipBehavior,
  );
}