copyWithWrapped method

LiabilitiesGetRequestOptions copyWithWrapped({
  1. Wrapped<List<String>?>? accountIds,
})

Implementation

LiabilitiesGetRequestOptions copyWithWrapped(
    {Wrapped<List<String>?>? accountIds}) {
  return LiabilitiesGetRequestOptions(
      accountIds: (accountIds != null ? accountIds.value : this.accountIds));
}