copyWith method
Implementation
MinRadiusScale copyWith({
double? none,
double? sm,
double? md,
double? lg,
double? xl,
double? xl2,
double? full,
}) {
return MinRadiusScale(
none: none ?? this.none,
sm: sm ?? this.sm,
md: md ?? this.md,
lg: lg ?? this.lg,
xl: xl ?? this.xl,
xl2: xl2 ?? this.xl2,
full: full ?? this.full,
);
}