copyWith method
Create a copy with updated screen width
Implementation
FSResponsive copyWith({
double? screenWidth,
FSCustomBreakpoints? breakpoints,
}) {
return FSResponsive(
screenWidth: screenWidth ?? this.screenWidth,
breakpoints: breakpoints ?? this.breakpoints,
);
}