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