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