copyWith method

TransferSweepListResponse copyWith({
  1. List<TransferSweep>? sweeps,
  2. String? requestId,
})

Implementation

TransferSweepListResponse copyWith(
    {List<TransferSweep>? sweeps, String? requestId}) {
  return TransferSweepListResponse(
      sweeps: sweeps ?? this.sweeps, requestId: requestId ?? this.requestId);
}