copyWith method
StreamSpacing
copyWith({
- double? none,
- double? xxxs,
- double? xxs,
- double? xs,
- double? sm,
- double? md,
- double? lg,
- double? xl,
- double? xxl,
- double? xxxl,
inherited
Implementation
StreamSpacing copyWith({
double? none,
double? xxxs,
double? xxs,
double? xs,
double? sm,
double? md,
double? lg,
double? xl,
double? xxl,
double? xxxl,
}) {
final _this = (this as StreamSpacing);
return StreamSpacing(
none: none ?? _this.none,
xxxs: xxxs ?? _this.xxxs,
xxs: xxs ?? _this.xxs,
xs: xs ?? _this.xs,
sm: sm ?? _this.sm,
md: md ?? _this.md,
lg: lg ?? _this.lg,
xl: xl ?? _this.xl,
xxl: xxl ?? _this.xxl,
xxxl: xxxl ?? _this.xxxl,
);
}