copyWith method

AuthGetRequestOptions copyWith({
  1. List<String>? accountIds,
})

Implementation

AuthGetRequestOptions copyWith({List<String>? accountIds}) {
  return AuthGetRequestOptions(accountIds: accountIds ?? this.accountIds);
}