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