copyWith method
Creates a copy of this EdgeInsets but with the given fields replaced with the new values.
Implementation
@override
EdgeInsets copyWith(
{double? left, double? top, double? right, double? bottom}) {
return $value.copyWith(left: left, top: top, right: right, bottom: bottom);
}