copyWithVertical method
Implementation
EdgeInsets copyWithVertical(double? vertical) {
return REdgeInsets.only(
left: left,
right: right,
top: vertical ?? top,
bottom: vertical ?? bottom,
);
}
EdgeInsets copyWithVertical(double? vertical) {
return REdgeInsets.only(
left: left,
right: right,
top: vertical ?? top,
bottom: vertical ?? bottom,
);
}