copyWith method

TransferSweepGetResponse copyWith({
  1. TransferSweep? sweep,
  2. String? requestId,
})

Implementation

TransferSweepGetResponse copyWith({TransferSweep? sweep, String? requestId}) {
  return TransferSweepGetResponse(
      sweep: sweep ?? this.sweep, requestId: requestId ?? this.requestId);
}