copyWith method
Returns a copy of this but with the given fields replaced with the new values.
Implementation
@useResult
FResizableDividerThumbStyle copyWith({
Color? backgroundColor,
Color? foregroundColor,
double? height,
double? width,
}) =>
FResizableDividerThumbStyle(
backgroundColor: backgroundColor ?? this.backgroundColor,
foregroundColor: foregroundColor ?? this.foregroundColor,
height: height ?? this.height,
width: width ?? this.width,
);