copyWith method

BankTransferSweepGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? sweepId,
})

Implementation

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