deepCopy method

ProductCardConfiguration deepCopy()

Implementation

ProductCardConfiguration deepCopy() => ProductCardConfiguration(
      theme: theme,
      cornerRadius: cornerRadius,
      isCtaButtonHidden: isCtaButtonHidden,
      ctaButtonText: ctaButtonText,
      ctaButtonStyle: ctaButtonStyle?.deepCopy(),
      priceConfiguration: priceConfiguration?.deepCopy(),
      width: width,
      height: height,
      backgroundColor: backgroundColor,
      iconConfiguration: iconConfiguration?.deepCopy(),
      nameLabel: nameLabel?.deepCopy(),
    );