copyWithEdge method
Implementation
Margins copyWithEdge(
{double? left, double? right, double? top, double? bottom}) =>
Margins(
left: left != null ? Margin(left, this.left?.unit) : this.left,
right: right != null ? Margin(right, this.right?.unit) : this.right,
top: top != null ? Margin(top, this.top?.unit) : this.top,
bottom:
bottom != null ? Margin(bottom, this.bottom?.unit) : this.bottom,
);