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