copyWith method
Create a copy with some fields replaced.
Implementation
RadiusConfig copyWith({
String? xs,
String? sm,
String? md,
String? lg,
String? xl,
String? xxl,
String? full,
}) {
return RadiusConfig(
xs: xs ?? this.xs,
sm: sm ?? this.sm,
md: md ?? this.md,
lg: lg ?? this.lg,
xl: xl ?? this.xl,
xxl: xxl ?? this.xxl,
full: full ?? this.full,
);
}