copyWith method
Implementation
@override
BackgroundFillGradient copyWith({
int? topColor,
int? bottomColor,
int? rotationAngle,
}) =>
BackgroundFillGradient(
topColor: topColor ?? this.topColor,
bottomColor: bottomColor ?? this.bottomColor,
rotationAngle: rotationAngle ?? this.rotationAngle,
);