copyWith method
Implementation
ViewPadding copyWith({
double? left,
double? top,
double? right,
double? bottom,
}) {
return ViewPadding(
left: left ?? this.left,
top: top ?? this.top,
right: right ?? this.right,
bottom: bottom ?? this.bottom,
);
}