copyWith method

TransferOriginatorCreateRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? companyName,
})

Implementation

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