copyWith method

TransferGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? transferId,
})

Implementation

TransferGetRequest copyWith(
    {String? clientId, String? secret, String? transferId}) {
  return TransferGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      transferId: transferId ?? this.transferId);
}