copyWith method
Implementation
Margins copyWith(
{Margin? left, Margin? right, Margin? top, Margin? bottom}) =>
Margins(
left: left ?? this.left,
right: right ?? this.right,
top: top ?? this.top,
bottom: bottom ?? this.bottom,
);