copyWith method

AwsBarThemeBridge copyWith({
  1. Color? color,
  2. BoxBorder? border,
  3. BorderRadiusGeometry? borderRadius,
  4. List<BoxShadow>? boxShadow,
  5. Gradient? gradient,
  6. BlendMode? backgroundBlendMode,
  7. Gradient? borderGradient,
})

Implementation

AwsBarThemeBridge copyWith(
        {Color? color,
        BoxBorder? border,
        BorderRadiusGeometry? borderRadius,
        List<BoxShadow>? boxShadow,
        Gradient? gradient,
        BlendMode? backgroundBlendMode,
        Gradient? borderGradient}) =>
    AwsBarThemeBridge(
        color: color ?? this.color,
        border: border ?? this.border,
        borderRadius: borderRadius ?? this.borderRadius,
        boxShadow: boxShadow ?? this.boxShadow,
        gradient: gradient ?? this.gradient,
        backgroundBlendMode: backgroundBlendMode ?? this.backgroundBlendMode,
        borderGradient: borderGradient ?? this.borderGradient);