copyWith method
Create a copy with updated values
Implementation
FSResponsiveValue<T> copyWith({
T? xs,
T? sm,
T? md,
T? lg,
T? xl,
T? xxl,
}) {
return FSResponsiveValue<T>(
xs: xs ?? this.xs,
sm: sm ?? this.sm,
md: md ?? this.md,
lg: lg ?? this.lg,
xl: xl ?? this.xl,
xxl: xxl ?? this.xxl,
);
}