copyWith method

  1. @useResult
FResizableDividerThumbStyle copyWith({
  1. BoxDecoration? decoration,
  2. Color? foregroundColor,
  3. double? height,
  4. double? width,
})

Returns a copy of this FResizableDividerThumbStyle with the given properties replaced.

Consider using the CLI to generate a style.

Parameters

Implementation

@useResult
FResizableDividerThumbStyle copyWith({
  BoxDecoration? decoration,
  Color? foregroundColor,
  double? height,
  double? width,
}) => FResizableDividerThumbStyle(
  decoration: decoration ?? this.decoration,
  foregroundColor: foregroundColor ?? this.foregroundColor,
  height: height ?? this.height,
  width: width ?? this.width,
);