copyWith method
Create a copy with updated values
Implementation
FSCustomSpacing copyWith({
double? none,
double? xs,
double? sm,
double? md,
double? lg,
double? xl,
double? xxl,
double? xxxl,
}) {
return FSCustomSpacing(
none: none ?? this.none,
xs: xs ?? this.xs,
sm: sm ?? this.sm,
md: md ?? this.md,
lg: lg ?? this.lg,
xl: xl ?? this.xl,
xxl: xxl ?? this.xxl,
xxxl: xxxl ?? this.xxxl,
);
}