copyWithHorizontal method

EdgeInsets copyWithHorizontal(
  1. double? horizontal
)

Implementation

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