copyWith method
Implementation
MinShadows copyWith({
List<BoxShadow>? sm,
List<BoxShadow>? md,
List<BoxShadow>? lg,
List<BoxShadow>? xl,
List<BoxShadow>? xl2,
}) {
return MinShadows(
sm: sm ?? this.sm,
md: md ?? this.md,
lg: lg ?? this.lg,
xl: xl ?? this.xl,
xl2: xl2 ?? this.xl2,
);
}