copyWithWrapped method

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

Implementation

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