copyWith method
CalendarCellDecorator
copyWith({
- Color? color,
- Color? contentColor,
- double? height,
- double? width,
- EdgeInsets? margin,
- EdgeInsets? padding,
- BorderRadiusGeometry? borderRadius,
Implementation
CalendarCellDecorator copyWith({
Color? color,
Color? contentColor,
double? height,
double? width,
EdgeInsets? margin,
EdgeInsets? padding,
BorderRadiusGeometry? borderRadius,
}) {
return CalendarCellDecorator(
color: color ?? this.color,
contentColor: contentColor ?? this.contentColor,
height: height ?? this.height,
width: width ?? this.width,
margin: margin ?? this.margin,
padding: padding ?? this.padding,
borderRadius: borderRadius ?? this.borderRadius,
);
}