copyWith method

BankTransferSweepGetResponse copyWith({
  1. BankTransferSweep? sweep,
  2. String? requestId,
})

Implementation

BankTransferSweepGetResponse copyWith(
    {BankTransferSweep? sweep, String? requestId}) {
  return BankTransferSweepGetResponse(
      sweep: sweep ?? this.sweep, requestId: requestId ?? this.requestId);
}