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