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);
}