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