copyWith method

Strength$Response copyWith({
  1. double? strength,
})

Implementation

Strength$Response copyWith({double? strength}) {
  return Strength$Response(strength: strength ?? this.strength);
}