copyWith method

PartnerEndCustomerSecrets copyWith({
  1. String? sandbox,
  2. String? development,
})

Implementation

PartnerEndCustomerSecrets copyWith({String? sandbox, String? development}) {
  return PartnerEndCustomerSecrets(
      sandbox: sandbox ?? this.sandbox,
      development: development ?? this.development);
}