copyWith method
Implementation
DynamicEdgeInsets copyWith({
Length? top,
Length? bottom,
Length? left,
Length? right,
}) {
return DynamicEdgeInsets.only(
top: top ?? this.top,
bottom: bottom ?? this.bottom,
left: left ?? this.left,
right: right ?? this.right,
);
}