copyWith method
Implementation
HorizontalSpacing copyWith({
double? left,
double? right,
}) {
return HorizontalSpacing(
left ?? this.left,
right ?? this.right,
);
}
HorizontalSpacing copyWith({
double? left,
double? right,
}) {
return HorizontalSpacing(
left ?? this.left,
right ?? this.right,
);
}