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