copyWithWrapped method

ProcessorBalanceGetRequestOptions copyWithWrapped({
  1. Wrapped<String?>? minLastUpdatedDatetime,
})

Implementation

ProcessorBalanceGetRequestOptions copyWithWrapped(
    {Wrapped<String?>? minLastUpdatedDatetime}) {
  return ProcessorBalanceGetRequestOptions(
      minLastUpdatedDatetime: (minLastUpdatedDatetime != null
          ? minLastUpdatedDatetime.value
          : this.minLastUpdatedDatetime));
}