copyWith method
- MaterialStateProperty<bool?> ? thumbVisibility,
- MaterialStateProperty<double?> ? thickness,
- MaterialStateProperty<bool?> ? trackVisibility,
- bool? interactive,
- Radius? radius,
- MaterialStateProperty<Color?> ? thumbColor,
- MaterialStateProperty<Color?> ? trackColor,
- MaterialStateProperty<Color?> ? trackBorderColor,
- double? crossAxisMargin,
- double? mainAxisMargin,
- double? minThumbLength,
Creates a copy of this object with the given fields replaced with the new values.
Implementation
ScrollbarThemeData copyWith({
  MaterialStateProperty<bool?>? thumbVisibility,
  MaterialStateProperty<double?>? thickness,
  MaterialStateProperty<bool?>? trackVisibility,
  bool? interactive,
  Radius? radius,
  MaterialStateProperty<Color?>? thumbColor,
  MaterialStateProperty<Color?>? trackColor,
  MaterialStateProperty<Color?>? trackBorderColor,
  double? crossAxisMargin,
  double? mainAxisMargin,
  double? minThumbLength,
}) {
  return ScrollbarThemeData(
    thumbVisibility: thumbVisibility ?? this.thumbVisibility,
    thickness: thickness ?? this.thickness,
    trackVisibility: trackVisibility ?? this.trackVisibility,
    interactive: interactive ?? this.interactive,
    radius: radius ?? this.radius,
    thumbColor: thumbColor ?? this.thumbColor,
    trackColor: trackColor ?? this.trackColor,
    trackBorderColor: trackBorderColor ?? this.trackBorderColor,
    crossAxisMargin: crossAxisMargin ?? this.crossAxisMargin,
    mainAxisMargin: mainAxisMargin ?? this.mainAxisMargin,
    minThumbLength: minThumbLength ?? this.minThumbLength,
  );
}