copyWith method

Softness$Response copyWith({
  1. double? softness,
})

Implementation

Softness$Response copyWith({double? softness}) {
  return Softness$Response(softness: softness ?? this.softness);
}