copyWith method
ResponsiveWidget
copyWith({
- Widget? s,
- Widget? xs,
- Widget? xxs,
- Widget? m,
- Widget? xm,
- Widget? l,
- Widget? xl,
- Widget? xxl,
- Widget? h,
override
Implementation
@override
ResponsiveWidget copyWith(
{Widget? s,
Widget? xs,
Widget? xxs,
Widget? m,
Widget? xm,
Widget? l,
Widget? xl,
Widget? xxl,
Widget? h}) =>
ResponsiveWidget(
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,
);