copyWith method
Implementation
BankTransferSweepListResponse copyWith(
{List<BankTransferSweep>? sweeps, String? requestId}) {
return BankTransferSweepListResponse(
sweeps: sweeps ?? this.sweeps, requestId: requestId ?? this.requestId);
}