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