copyWith method

PaymentProfileCreateRequest copyWith({
  1. String? clientId,
  2. String? secret,
})

Implementation

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