copyWith method
Returns a copy of this FDividerStyle with the given properties replaced.
Implementation
@useResult
FDividerStyle copyWith({Color? color, EdgeInsetsGeometry? padding, double? width}) => FDividerStyle(
color: color ?? this.color,
padding: padding ?? this.padding,
width: width ?? this.width,
);