copyWith method

Sampling$Response copyWith({
  1. String? sampling,
})

Implementation

Sampling$Response copyWith({String? sampling}) {
  return Sampling$Response(sampling: sampling ?? this.sampling);
}