copyWith method
Implementation
VerticalSpacing copyWith({
double? top,
double? bottom,
}) {
return VerticalSpacing(
top ?? this.top,
bottom ?? this.bottom,
);
}
VerticalSpacing copyWith({
double? top,
double? bottom,
}) {
return VerticalSpacing(
top ?? this.top,
bottom ?? this.bottom,
);
}