copyWith method

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

Implementation

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