copyWith method
Implementation
@override
ResponsiveInt copyWith({
int? s,
int? xs,
int? xxs,
int? m,
int? xm,
int? l,
int? xl,
int? xxl,
int? h,
}) =>
ResponsiveInt(
s: s ?? this.s,
xs: xs ?? this.xs,
xxs: xxs ?? this.xxs,
m: m ?? this.m,
xm: xm ?? this.xm,
l: l ?? this.l,
xl: xl ?? this.xl,
xxl: xxl ?? this.xxl,
h: h ?? this.h,
);