copyWith method
Creates a copy of this input border with the specified borderSide
.
Implementation
@override
GradientOutlineInputBorder copyWith({BorderSide? borderSide}) {
return GradientOutlineInputBorder(
borderSide: borderSide ?? this.borderSide,
borderRadius: borderRadius,
gapPadding: gapPadding,
accentColor: accentColor,
accentAligment: accentAligment,
accentIntensity: accentIntensity,
);
}