copyWith method

ProcessorBalanceGetRequestOptions copyWith({
  1. String? minLastUpdatedDatetime,
})

Implementation

ProcessorBalanceGetRequestOptions copyWith({String? minLastUpdatedDatetime}) {
  return ProcessorBalanceGetRequestOptions(
      minLastUpdatedDatetime:
          minLastUpdatedDatetime ?? this.minLastUpdatedDatetime);
}