copyWithVertical method

EdgeInsets copyWithVertical(
  1. double? vertical
)

Implementation

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