copyWithWrapped method

Implementation

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