copyWith method

RCKQuotePreviewConfig copyWith({
  1. Color? backgroundColor,
  2. EdgeInsets? padding,
  3. TextStyle? textStyle,
  4. 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,
  );
}