copyWith method

Gamma$Response copyWith({
  1. double? gamma,
})

Implementation

Gamma$Response copyWith({double? gamma}) {
  return Gamma$Response(gamma: gamma ?? this.gamma);
}