copyWith method

BankTransferGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? bankTransferId,
})

Implementation

BankTransferGetRequest copyWith(
    {String? clientId, String? secret, String? bankTransferId}) {
  return BankTransferGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      bankTransferId: bankTransferId ?? this.bankTransferId);
}