ResolveNameWithFolderIdsAndSearchScopeAndDetails method

Future<NameResolutionCollection> ResolveNameWithFolderIdsAndSearchScopeAndDetails(
  1. String nameToResolve,
  2. Iterable<FolderId>? parentFolderIds,
  3. ResolveNameSearchLocation searchScope,
  4. bool returnContactDetails,
)
Finds contacts in the Global Address List and/or in specific contact folders that have names that match the one passed as a parameter. Calling this method results in a call to EWS. The name to resolve. The Ids of the contact folders in which to look for matching contacts. The scope of the search. Indicates whether full contact information should be returned for each of the found contacts.

Implementation

Future<NameResolutionCollection>
    ResolveNameWithFolderIdsAndSearchScopeAndDetails(
        String nameToResolve,
        Iterable<FolderId>? parentFolderIds,
        ResolveNameSearchLocation searchScope,
        bool returnContactDetails) {
  return ResolveName(nameToResolve, parentFolderIds, searchScope,
      returnContactDetails, null);
}