copyWith method

HourDividersStyle copyWith({
  1. Color? color,
  2. double? width,
})

Implementation

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