copyWith method
Implementation
DateDividersStyle copyWith({Color? color, double? width}) {
return DateDividersStyle.raw(
color: color ?? this.color,
width: width ?? this.width,
);
}
DateDividersStyle copyWith({Color? color, double? width}) {
return DateDividersStyle.raw(
color: color ?? this.color,
width: width ?? this.width,
);
}