copyWith method
RCKQuotePreviewConfig
copyWith({
- Color? backgroundColor,
- EdgeInsets? padding,
- TextStyle? textStyle,
- Icon? closeIcon,
Implementation
RCKQuotePreviewConfig copyWith({
Color? backgroundColor,
EdgeInsets? padding,
TextStyle? textStyle,
Icon? closeIcon,
}) {
return RCKQuotePreviewConfig(
backgroundColor: backgroundColor ?? this.backgroundColor,
padding: padding ?? this.padding,
textStyle: textStyle ?? this.textStyle,
closeIcon: closeIcon ?? this.closeIcon,
);
}