copyWith method

  1. @useResult
FSelectScrollHandleStyle copyWith({
  1. IconThemeData? iconStyle,
  2. Color? background,
  3. Duration? enterDuration,
  4. double? pixelsPerSecond,
})

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

Consider using the CLI to generate a style.

Parameters

Implementation

@useResult
FSelectScrollHandleStyle copyWith({
  IconThemeData? iconStyle,
  Color? background,
  Duration? enterDuration,
  double? pixelsPerSecond,
}) => FSelectScrollHandleStyle(
  iconStyle: iconStyle ?? this.iconStyle,
  background: background ?? this.background,
  enterDuration: enterDuration ?? this.enterDuration,
  pixelsPerSecond: pixelsPerSecond ?? this.pixelsPerSecond,
);