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