copyWith method
Implementation
MiniSpacingTokens copyWith({
double? xs,
double? sm,
double? md,
double? lg,
double? xl,
}) {
return MiniSpacingTokens(
xs: xs ?? this.xs,
sm: sm ?? this.sm,
md: md ?? this.md,
lg: lg ?? this.lg,
xl: xl ?? this.xl,
);
}