copyWithWrapped method

Implementation

TransactionResponse copyWithWrapped(
    {Wrapped<TransactionResponse$Data>? data}) {
  return TransactionResponse(data: (data != null ? data.value : this.data));
}