copyWith method

  1. @override
GradientOutlineInputBorder copyWith({
  1. BorderSide? borderSide,
})
override

Creates a copy of this input border with the specified borderSide.

Implementation

@override
GradientOutlineInputBorder copyWith({BorderSide? borderSide}) {
  return GradientOutlineInputBorder(
      borderSide: borderSide ?? this.borderSide);
}