copyWith method

TransferOriginatorGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? originatorClientId,
})

Implementation

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