copyWith method
Implementation
PaymentProfileCreateRequest copyWith({String? clientId, String? secret}) {
return PaymentProfileCreateRequest(
clientId: clientId ?? this.clientId, secret: secret ?? this.secret);
}
PaymentProfileCreateRequest copyWith({String? clientId, String? secret}) {
return PaymentProfileCreateRequest(
clientId: clientId ?? this.clientId, secret: secret ?? this.secret);
}