copyWith method

TButtonShape copyWith({
  1. OutlinedBorder? border,
  2. bool? vertical,
})

Implementation

TButtonShape copyWith({
  OutlinedBorder? border,
  bool? vertical,
}) {
  return TButtonShape(
    border: border ?? this.border,
    vertical: vertical ?? this.vertical,
  );
}